Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 256 for quint8 (0.23 sec)

  1. src/cmd/compile/internal/types2/universe.go

    	Int64:         {Int64, IsInteger, "int64"},
    	Uint:          {Uint, IsInteger | IsUnsigned, "uint"},
    	Uint8:         {Uint8, IsInteger | IsUnsigned, "uint8"},
    	Uint16:        {Uint16, IsInteger | IsUnsigned, "uint16"},
    	Uint32:        {Uint32, IsInteger | IsUnsigned, "uint32"},
    	Uint64:        {Uint64, IsInteger | IsUnsigned, "uint64"},
    	Uintptr:       {Uintptr, IsInteger | IsUnsigned, "uintptr"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/go/types/universe.go

    	Int64:         {Int64, IsInteger, "int64"},
    	Uint:          {Uint, IsInteger | IsUnsigned, "uint"},
    	Uint8:         {Uint8, IsInteger | IsUnsigned, "uint8"},
    	Uint16:        {Uint16, IsInteger | IsUnsigned, "uint16"},
    	Uint32:        {Uint32, IsInteger | IsUnsigned, "uint32"},
    	Uint64:        {Uint64, IsInteger | IsUnsigned, "uint64"},
    	Uintptr:       {Uintptr, IsInteger | IsUnsigned, "uintptr"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/internal/trace/base.go

    		return
    	}
    	if int(minID) > len(d.sparse) {
    		return
    	}
    	size := int(maxID) + 1
    	d.present = make([]uint8, (size+7)/8)
    	d.dense = make([]E, size)
    	for id, data := range d.sparse {
    		d.dense[id] = data
    		d.present[id/8] |= uint8(1) << (id % 8)
    	}
    	d.sparse = nil
    }
    
    // get returns the E for id or false if it doesn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. cni/pkg/ipset/nldeps_linux.go

    	"golang.org/x/sys/unix"
    )
    
    func RealNlDeps() NetlinkIpsetDeps {
    	return &realDeps{}
    }
    
    type realDeps struct{}
    
    func (m *realDeps) ipsetIPHashCreate(name string, v6 bool) error {
    	var family uint8
    
    	if v6 {
    		family = unix.AF_INET6
    	} else {
    		family = unix.AF_INET
    	}
    	err := netlink.IpsetCreate(name, "hash:ip", netlink.IpsetCreateOptions{Comments: true, Replace: true, Family: family})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 18:07:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/crypto/aes/cipher.go

    	"crypto/internal/boring"
    	"strconv"
    )
    
    // The AES block size in bytes.
    const BlockSize = 16
    
    // A cipher is an instance of AES encryption using a particular key.
    type aesCipher struct {
    	l   uint8 // only this length of the enc and dec array is actually used
    	enc [28 + 32]uint32
    	dec [28 + 32]uint32
    }
    
    type KeySizeError int
    
    func (k KeySizeError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/syscall/syscall_freebsd.go

    func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    
    type SockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [46]int8
    	raw    RawSockaddrDatalink
    }
    
    // Translate "kern.hostname" to []_C_int{0,1,2,3}.
    func nametomib(name string) (mib []_C_int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. cmd/erasure-coding.go

    	// Approx runtime ~1ms
    	var testConfigs [][2]uint8
    	for total := uint8(4); total < 16; total++ {
    		for data := total / 2; data < total; data++ {
    			parity := total - data
    			testConfigs = append(testConfigs, [2]uint8{data, parity})
    		}
    	}
    	got := make(map[[2]uint8]map[ErasureAlgo]uint64, len(testConfigs))
    	// Copied from output of fmt.Printf("%#v", got) at the end.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 31 02:11:45 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. src/runtime/pprof/protomem_test.go

    	const expectedLocation = "runtime/pprof.nonRecursiveGenericAllocFunction[go.shape.struct {},go.shape.struct { runtime/pprof.buf [128]uint8 }];runtime/pprof.nonRecursiveGenericAllocFunction[go.shape.struct { runtime/pprof.buf [128]uint8...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/runtime/defs_windows_386.go

    type floatingsavearea struct {
    	controlword   uint32
    	statusword    uint32
    	tagword       uint32
    	erroroffset   uint32
    	errorselector uint32
    	dataoffset    uint32
    	dataselector  uint32
    	registerarea  [80]uint8
    	cr0npxstate   uint32
    }
    
    type context struct {
    	contextflags      uint32
    	dr0               uint32
    	dr1               uint32
    	dr2               uint32
    	dr3               uint32
    	dr6               uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. test/checkbce.go

    }
    
    func f2c(a [35]int, i uint32) {
    	useInt(a[i]) // ERROR "Found IsInBounds$"
    	j := i & 34
    	useInt(a[j])
    	j = i & 17
    	useInt(a[j])
    }
    
    func f3(a [256]int, i uint8) {
    	useInt(a[i])
    	useInt(a[i+10])
    	useInt(a[i+14])
    }
    
    func f4(a [27]int, i uint8) {
    	useInt(a[i%15])
    	useInt(a[i%19])
    	useInt(a[i%27])
    }
    
    func f5(a []int) {
    	if len(a) > 5 {
    		useInt(a[5])
    		useSlice(a[6:])
    		useSlice(a[:6])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top