search for: subn

Displaying 11 results from an estimated 11 matches for "subn".

Did you mean: sub
2013 May 16
0
[LLVMdev] Combining physical registers
...ndexLaneMask(SubB); > /// > /// If (MaskA & ~(MaskB & Covering)) == 0, then SubA is completely covered by > /// SubB. > unsigned getCoveringLanes() const { return CoveringLanes; } Yes, this would solve my problem. I'm assuming that if I have subregisters Sub0..SubN (where Sub0 could be 0, i.e. the register itself), and corresponding masks Mask0..MaskN, and Mask0 & ~((Mask1|Mask2|..|MaskN) & Covering) == 0, this will imply that the subregisters Sub1..SubN cover Sub0. Thanks, -Krzysztof -- Qualcomm Innovation Center, Inc. is a member of Code Aur...
2013 May 16
1
[LLVMdev] Combining physical registers
On May 16, 2013, at 8:13 AM, Krzysztof Parzyszek <kparzysz at codeaurora.org> wrote: > The function TII::canCombineSubRegIndices has been gone for a while now, and I was wondering if there is a target-independent way of determining if a certain set of physical registers "adds up" to a larger register. For example, on X86, AL and AH together form AX. On Hexagon, R0 and R1 are
2013 May 16
2
[LLVMdev] Combining physical registers
The function TII::canCombineSubRegIndices has been gone for a while now, and I was wondering if there is a target-independent way of determining if a certain set of physical registers "adds up" to a larger register. For example, on X86, AL and AH together form AX. On Hexagon, R0 and R1 are D0. The context here is an attempt to coalesce multiple loads/stores into fewer loads/stores
2005 Feb 07
9
Zoning Out
I''m getting my zones confused. Help. I need to have a bunch of systems using OpenVPN to gain an IP in the virtual subnet 10.100.1.0/24, on interface tun0. I will then route whole subnets to those IPs, like 10.100.2.0/24 via 10.100.1.12, etc. I want to have a policy for: - all hosts behind tun0 - all hosts in 10.100.1.0/24 - individual subnets being routed through IPs in 10.100.1.0/24 So, I think I need: inter...
1999 Jan 18
0
samba 2.0.0 wins registration error
...1999/01/18 07:18:02, 1] nmbd/nmbd.c:main(672) Netbios nameserver version 2.0.0 started. Copyright Andrew Tridgell 1994-1998 [1999/01/18 07:18:24, 0] nmbd/nmbd_become_lmb.c:become_local_master_stage2(406) ***** Samba name server MEDUSA is now a local master browser for workgroup CSI_MELB on subnet 204.17.222.19 ***** [1999/01/18 07:55:43, 0] nmbd/nmbd_incomingrequests.c:process_name_registration_request(224) process_name_registration_request: unicast name registration request received for name ZIRCONIUM<20> from IP 204.17.222.63 on subn et UNICAST_SUBNET. Error - should be sent...
2005 Dec 13
2
NET VIEW equivalent in Samba
Hi! Is there a NET VIEW equivalent in samba? I looked at smbclient -L but then I have to know the browser master. I only want to specifiy a workgroup.. Regards, Henrik
2012 Jul 19
2
[PATCH] pygrub: add syslog support to pygrub
...soptions = "" + args = None + if chosencfg["args"]: + zfsinfo = fsimage.getbootstring(fs) + if zfsinfo is not None: + e = re.compile("zfs-bootfs=[\w\-\.\:@/]+" ) + (chosencfg["args"],count) = e.subn(zfsinfo, chosencfg["args"]) + if count == 0: + chosencfg["args"] += " -B %s" % zfsinfo + args = chosencfg["args"] - # get list of offsets into file which start partitions - part_offs = get_partition_offsets...
2019 Oct 19
0
CentOS update broke Samba
...???? ??7483 /usr/sbin/nmbd --foreground --no-process-group > ?????????? ??7484 /usr/sbin/nmbd --foreground --no-process-group > > Oct 19 15:20:27 ndtc-fs nmbd[7483]: > Oct 19 15:20:27 ndtc-fs nmbd[7483]:?? Samba server NDTC-FS is now a > domain master browser for workgroup A36561 on subne...8.255.5 > Oct 19 15:20:27 ndtc-fs nmbd[7483]: > Oct 19 15:20:27 ndtc-fs nmbd[7483]:?? ***** > Oct 19 15:20:42 ndtc-fs nmbd[7483]: [2019/10/19 15:20:42.367309, 0] > ../source3/nmbd/nmbd_become_lmb.c:397(become_local...stage2) > Oct 19 15:20:42 ndtc-fs nmbd[7483]:?? ***** > Oct...
2019 Oct 19
2
CentOS update broke Samba
...lice/nmb.service ??7483 /usr/sbin/nmbd --foreground --no-process-group ??7484 /usr/sbin/nmbd --foreground --no-process-group Oct 19 15:20:27 ndtc-fs nmbd[7483]: Oct 19 15:20:27 ndtc-fs nmbd[7483]: Samba server NDTC-FS is now a domain master browser for workgroup A36561 on subne...8.255.5 Oct 19 15:20:27 ndtc-fs nmbd[7483]: Oct 19 15:20:27 ndtc-fs nmbd[7483]: ***** Oct 19 15:20:42 ndtc-fs nmbd[7483]: [2019/10/19 15:20:42.367309, 0] ../source3/nmbd/nmbd_become_lmb.c:397(become_local...stage2) Oct 19 15:20:42 ndtc-fs nmbd[7483]: ***** Oct 19 15:20:42 ndtc-fs nmbd[7483]...
2000 Nov 08
0
vq diffs
...ffbuild.c --- vorbis/vq/huffbuild.c Sat Nov 4 01:43:55 2000 +++ vorbis-ejk/vq/huffbuild.c Wed Nov 8 14:34:53 2000 @@ -21,4 +21,5 @@ #include <math.h> #include <stdio.h> +#include "misc.h" #include "bookutil.h" @@ -113,6 +114,6 @@ { long vals=pow(maxval,subn); - long *hist=_ogg_malloc(vals*sizeof(long)); - long *lengths=_ogg_malloc(vals*sizeof(long)); + long *hist=(long*)_ogg_malloc(vals*sizeof(long)); + long *lengths=(long*)_ogg_malloc(vals*sizeof(long)); for(j=0;j<vals;j++)hist[j]=guard; diff -bBu2r vorbis/vq/latticebuild.c...
2019 Oct 19
3
CentOS update broke Samba
Running CentOS Linux release 7.7.1908. Have Samba running as our fileserver on our (mostly) Windows network. Ran my "normal" yum updates today, and Samba was upgraded (last updates were on 8/10/2019). I was on 4.8.3 before; now it's 4.9.1: Updated samba-4.8.3-6.el7_6.x86_64 @updates Updated samba-client-4.8.3-6.el7_6.x86_64