Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 236 for MASK (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.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)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.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)
  3. src/math/big/nat.go

    		bitLengthOfMSW = _W
    	}
    	mask := Word((1 << bitLengthOfMSW) - 1)
    
    	for {
    		switch _W {
    		case 32:
    			for i := range z {
    				z[i] = Word(rand.Uint32())
    			}
    		case 64:
    			for i := range z {
    				z[i] = Word(rand.Uint32()) | Word(rand.Uint32())<<32
    			}
    		default:
    			panic("unknown word size")
    		}
    		z[len(limit)-1] &= mask
    		if z.cmp(limit) < 0 {
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/sccp.go

    		OpZeroExt16to64, OpZeroExt32to64, OpSignExt8to16, OpSignExt8to32,
    		OpSignExt8to64, OpSignExt16to32, OpSignExt16to64, OpSignExt32to64,
    		// bit
    		OpCtz8, OpCtz16, OpCtz32, OpCtz64,
    		// mask
    		OpSlicemask,
    		// safety check
    		OpIsNonNil,
    		// not
    		OpNot:
    		return true
    	case
    		// add
    		OpAdd64, OpAdd32, OpAdd16, OpAdd8,
    		OpAdd32F, OpAdd64F,
    		// sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.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
    - 14.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	_, e1 := callstatx(dirfd, uintptr(unsafe.Pointer(_p0)), flags, mask, uintptr(unsafe.Pointer(stat)))
    	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
    - 30K bytes
    - Viewed (0)
  7. src/runtime/os_windows.go

    }
    
    func getproccount() int32 {
    	var mask, sysmask uintptr
    	ret := stdcall3(_GetProcessAffinityMask, currentProcess, uintptr(unsafe.Pointer(&mask)), uintptr(unsafe.Pointer(&sysmask)))
    	if ret != 0 {
    		n := 0
    		maskbits := int(unsafe.Sizeof(mask) * 8)
    		for i := 0; i < maskbits; i++ {
    			if mask&(1<<uint(i)) != 0 {
    				n++
    			}
    		}
    		if n != 0 {
    			return int32(n)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    }
    
    func matchIPConstraint(ip net.IP, constraint *net.IPNet) (bool, error) {
    	if len(ip) != len(constraint.IP) {
    		return false, nil
    	}
    
    	for i := range ip {
    		if mask := constraint.Mask[i]; ip[i]&mask != constraint.IP[i]&mask {
    			return false, nil
    		}
    	}
    
    	return true, nil
    }
    
    func matchDomainConstraint(domain, constraint string) (bool, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/ipset/ipset_test.go

    			},
    			set: &IPSet{
    				Name: "net mask boundary 0",
    			},
    			valid: true,
    		},
    		{ // case[31]
    			entry: &Entry{
    				SetType:  HashIPPortNet,
    				IP:       "10.20.30.40",
    				Protocol: ProtocolTCP,
    				Port:     53,
    				Net:      "192.168.3.0/32",
    			},
    			set: &IPSet{
    				Name: "net mask boundary 32",
    			},
    			valid: true,
    		},
    		{ // case[32]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.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.6K bytes
    - Viewed (0)
Back to top