Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 265 for MASK (0.04 sec)

  1. guava/src/com/google/common/io/BaseEncoding.java

        return BASE16;
      }
    
      static final class Alphabet {
        private final String name;
        // this is meant to be immutable -- don't modify it!
        private final char[] chars;
        final int mask;
        final int bitsPerChar;
        final int charsPerChunk;
        final int bytesPerChunk;
        private final byte[] decodabet;
        private final boolean[] validPadding;
        private final boolean ignoreCase;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/runtime/sys_freebsd_arm.s

    	WORD $0xee1d0f70 // mrc p15, 0, r0, c13, c0, 3
    	RET
    
    // func cpuset_getaffinity(level int, which int, id int64, size int, mask *byte) int32
    TEXT runtime·cpuset_getaffinity(SB), NOSPLIT, $0-28
    	MOVW	level+0(FP), R0
    	MOVW	which+4(FP), R1
    	MOVW	id_lo+8(FP), R2
    	MOVW	id_hi+12(FP), R3
    	ADD	$20, R13	// Pass size and mask on stack.
    	MOVW	$SYS_cpuset_getaffinity, R7
    	SWI	$0
    	RSB.CS	$0, R0
    	SUB	$20, R13
    	MOVW	R0, ret+24(FP)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe_test.go

    		t.Errorf("wrong answer: %d + %d*(2**64)", r.lo, r.hi)
    	}
    }
    
    func TestSetBytesRoundTrip(t *testing.T) {
    	f1 := func(in [32]byte, fe Element) bool {
    		fe.SetBytes(in[:])
    
    		// Mask the most significant bit as it's ignored by SetBytes. (Now
    		// instead of earlier so we check the masking in SetBytes is working.)
    		in[len(in)-1] &= (1 << 7) - 1
    
    		return bytes.Equal(in[:], fe.Bytes()) && isInBounds(&fe)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_linux_loong64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(pathname)
    	if err != nil {
    		return
    	}
    	r0, _, e1 := Syscall(SYS_INOTIFY_ADD_WATCH, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mask))
    	watchdesc = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    					DNSDomain: "cluster.local",
    				},
    				ControllerManager: kubeadmapi.ControlPlaneComponent{
    					ExtraArgs: []kubeadmapi.Arg{
    						{Name: "node-cidr-mask-size-ipv4", Value: "20"},
    						{Name: "node-cidr-mask-size-ipv6", Value: "80"},
    					},
    				},
    				CertificatesDir:   testCertsDir,
    				KubernetesVersion: cpVersion,
    			},
    			expected: []string{
    				"kube-controller-manager",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_PSELECT              = 436 // { int|sys|50|pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }
    	SYS_POLLTS               = 437 // { int|sys|50|pollts(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }
    	SYS_STAT                 = 439 // { int|sys|50|stat(const char *path, struct stat *ub); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go

    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {
    	_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_PSELECT              = 436 // { int|sys|50|pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }
    	SYS_POLLTS               = 437 // { int|sys|50|pollts(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }
    	SYS_STAT                 = 439 // { int|sys|50|stat(const char *path, struct stat *ub); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go

    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {
    	_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask>>32), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. src/math/rand/v2/rand.go

    // uint64n is the no-bounds-checks version of Uint64N.
    func (r *Rand) uint64n(n uint64) uint64 {
    	if is32bit && uint64(uint32(n)) == n {
    		return uint64(r.uint32n(uint32(n)))
    	}
    	if n&(n-1) == 0 { // n is power of two, can mask
    		return r.Uint64() & (n - 1)
    	}
    
    	// Suppose we have a uint64 x uniform in the range [0,2⁶⁴)
    	// and want to reduce it to the range [0,n) preserving exact uniformity.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top