Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 102 for MASK (0.03 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go

    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x1269
    )
    
    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
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go

    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x1269
    )
    
    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.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.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)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.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_amd64.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.4K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/app/options/options_test.go

    		},
    
    		Extra: Extra{
    			ServiceNodePortRange:   kubeoptions.DefaultServiceNodePortRange,
    			ServiceClusterIPRanges: (&net.IPNet{IP: netutils.ParseIPSloppy("192.168.128.0"), Mask: net.CIDRMask(17, 32)}).String(),
    			EndpointReconcilerType: string(reconcilers.LeaseEndpointReconcilerType),
    			AllowPrivileged:        false,
    			KubeletConfig: kubeletclient.KubeletClientConfig{
    				Port:         10250,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    			break
    		}
    	}
    }
    
    func (a *Attribute) ABI() ABI { return ABI(a.load() / attrABIBase) }
    func (a *Attribute) SetABI(abi ABI) {
    	const mask = 1 // Only one ABI bit for now.
    	for {
    		v0 := a.load()
    		v := (v0 &^ (mask * attrABIBase)) | Attribute(abi)*attrABIBase
    		if atomic.CompareAndSwapUint32((*uint32)(a), uint32(v0), uint32(v)) {
    			break
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. src/syscall/exec_linux_test.go

    		if caps.data[0].effective&(1<<uint(CAP_SYS_TIME)) == 0 {
    			fmt.Fprintln(os.Stderr, "CAP_SYS_TIME unexpectedly not in the effective capability mask")
    			os.Exit(2)
    		}
    		if caps.data[1].effective&(1<<uint(CAP_SYSLOG&31)) == 0 {
    			fmt.Fprintln(os.Stderr, "CAP_SYSLOG unexpectedly not in the effective capability mask")
    			os.Exit(2)
    		}
    		os.Exit(0)
    	}
    
    	// skip on android, due to lack of lookup support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. src/math/rand/rand.go

    // It panics if n <= 0.
    func (r *Rand) Int63n(n int64) int64 {
    	if n <= 0 {
    		panic("invalid argument to Int63n")
    	}
    	if n&(n-1) == 0 { // n is power of two, can mask
    		return r.Int63() & (n - 1)
    	}
    	max := int64((1 << 63) - 1 - (1<<63)%uint64(n))
    	v := r.Int63()
    	for v > max {
    		v = r.Int63()
    	}
    	return v % n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    	Devname [64]uint8
    	Volname [64]uint8
    }
    
    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.3K bytes
    - Viewed (0)
Back to top