Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 103 for MASK (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go

    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x20001269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]int8
    	Driver_name [64]int8
    	Module_name [64]int8
    	Type        uint32
    	Mask        uint32
    	Refcnt      uint32
    	Flags       uint32
    }
    
    type CryptoStatAEAD struct {
    	Type         [64]int8
    	Encrypt_cnt  uint64
    	Encrypt_tlen uint64
    	Decrypt_cnt  uint64
    	Decrypt_tlen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go

    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x20001269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]int8
    	Driver_name [64]int8
    	Module_name [64]int8
    	Type        uint32
    	Mask        uint32
    	Refcnt      uint32
    	Flags       uint32
    }
    
    type CryptoStatAEAD struct {
    	Type         [64]int8
    	Encrypt_cnt  uint64
    	Encrypt_tlen uint64
    	Decrypt_cnt  uint64
    	Decrypt_tlen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x20001269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]uint8
    	Driver_name [64]uint8
    	Module_name [64]uint8
    	Type        uint32
    	Mask        uint32
    	Refcnt      uint32
    	Flags       uint32
    }
    
    type CryptoStatAEAD struct {
    	Type         [64]uint8
    	Encrypt_cnt  uint64
    	Encrypt_tlen uint64
    	Decrypt_cnt  uint64
    	Decrypt_tlen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go

    	Volname [64]uint8
    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x1269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]int8
    	Driver_name [64]int8
    	Module_name [64]int8
    	Type        uint32
    	Mask        uint32
    	Refcnt      uint32
    	Flags       uint32
    }
    
    type CryptoStatAEAD struct {
    	Type         [64]int8
    	Encrypt_cnt  uint64
    	Encrypt_tlen uint64
    	Decrypt_cnt  uint64
    	Decrypt_tlen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go

    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x20001269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]int8
    	Driver_name [64]int8
    	Module_name [64]int8
    	Type        uint32
    	Mask        uint32
    	Refcnt      uint32
    	Flags       uint32
    }
    
    type CryptoStatAEAD struct {
    	Type         [64]int8
    	Encrypt_cnt  uint64
    	Encrypt_tlen uint64
    	Decrypt_cnt  uint64
    	Decrypt_tlen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    			cost := uint64(math.Ceil(float64(cidrSize+cidrSize) * common.StringTraversalCostFactor))
    
    			// As we are comparing if a CIDR is within another CIDR, we first mask the base CIDR and
    			// also compare the CIDR bits.
    			// This has an additional cost of the length of the IP being traversed again, plus 1.
    			cost += uint64(math.Ceil(float64(cidrSize)*common.StringTraversalCostFactor)) + 1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go

    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x20001269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]uint8
    	Driver_name [64]uint8
    	Module_name [64]uint8
    	Type        uint32
    	Mask        uint32
    	Refcnt      uint32
    	Flags       uint32
    }
    
    type CryptoStatAEAD struct {
    	Type         [64]uint8
    	Encrypt_cnt  uint64
    	Encrypt_tlen uint64
    	Decrypt_cnt  uint64
    	Decrypt_tlen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top