Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 360 for uint16 (0.11 sec)

  1. src/runtime/defs_darwin_amd64.go

    }
    
    type regs64 struct {
    	rax    uint64
    	rbx    uint64
    	rcx    uint64
    	rdx    uint64
    	rdi    uint64
    	rsi    uint64
    	rbp    uint64
    	rsp    uint64
    	r8     uint64
    	r9     uint64
    	r10    uint64
    	r11    uint64
    	r12    uint64
    	r13    uint64
    	r14    uint64
    	r15    uint64
    	rip    uint64
    	rflags uint64
    	cs     uint64
    	fs     uint64
    	gs     uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/runtime/defs_linux_386.go

    }
    
    type sigcontext struct {
    	gs            uint16
    	__gsh         uint16
    	fs            uint16
    	__fsh         uint16
    	es            uint16
    	__esh         uint16
    	ds            uint16
    	__dsh         uint16
    	edi           uint32
    	esi           uint32
    	ebp           uint32
    	esp           uint32
    	ebx           uint32
    	edx           uint32
    	ecx           uint32
    	eax           uint32
    	trapno        uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/registry/syscall.go

    //sys	regEnumValue(key syscall.Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error) = advapi32.RegEnumValueW
    //sys	regDeleteValue(key syscall.Handle, name *uint16) (regerrno error) = advapi32.RegDeleteValueW
    //sys   regLoadMUIString(key syscall.Handle, name *uint16, buf *uint16, buflen uint32, buflenCopied *uint32, flags uint32, dir *uint16) (regerrno error) = advapi32.RegLoadMUIStringW
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/runtime/defs_linux_amd64.go

    	_xmm      [16]xmmreg
    	padding   [24]uint32
    }
    
    type fpxreg1 struct {
    	significand [4]uint16
    	exponent    uint16
    	padding     [3]uint16
    }
    
    type xmmreg1 struct {
    	element [4]uint32
    }
    
    type fpstate1 struct {
    	cwd       uint16
    	swd       uint16
    	ftw       uint16
    	fop       uint16
    	rip       uint64
    	rdp       uint64
    	mxcsr     uint32
    	mxcr_mask uint32
    	_st       [8]fpxreg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/const1.go

    	_ uint16 = 0 /* ERROR "overflows" */ - 1
    	_ uint16 = 0
    	_ uint16 = maxUint16
    	_ uint16 = maxUint16 /* ERROR "overflows" */ + 1
    	_ uint16 = smallestFloat64 /* ERROR "truncated" */
    
    	_ = uint16(0 /* ERROR "overflows" */ - 1)
    	_ = uint16(0)
    	_ = uint16(maxUint16)
    	_ = uint16(maxUint16 /* ERROR "overflows" */ + 1)
    	_ = uint16(smallestFloat64 /* ERROR "cannot convert" */)
    )
    
    const (
    	_ uint32 = 0 /* ERROR "overflows" */ - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/route/binary.go

    )
    
    type binaryByteOrder interface {
    	Uint16([]byte) uint16
    	Uint32([]byte) uint32
    	PutUint16([]byte, uint16)
    	PutUint32([]byte, uint32)
    	Uint64([]byte) uint64
    }
    
    type binaryLittleEndian struct{}
    
    func (binaryLittleEndian) Uint16(b []byte) uint16 {
    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/memcombine_test.go

    	t.a = uint16(x)
    	t.b = uint16(x >> 16)
    }
    
    type T8 struct {
    	a, b uint8
    }
    
    //go:noinline
    func (t *T8) bigEndianLoad() uint16 {
    	return uint16(t.a)<<8 | uint16(t.b)
    }
    
    //go:noinline
    func (t *T8) littleEndianLoad() uint16 {
    	return uint16(t.a) | (uint16(t.b) << 8)
    }
    
    //go:noinline
    func (t *T8) bigEndianStore(x uint16) {
    	t.a = uint8(x >> 8)
    	t.b = uint8(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 30 18:35:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. src/syscall/wtf8_windows_test.go

    )
    
    var wtf8tests = []struct {
    	str  string
    	wstr []uint16
    }{
    	{
    		str:  "\x00",
    		wstr: []uint16{0x00},
    	},
    	{
    		str:  "\x5C",
    		wstr: []uint16{0x5C},
    	},
    	{
    		str:  "\x7F",
    		wstr: []uint16{0x7F},
    	},
    
    	// 2-byte
    	{
    		str:  "\xC2\x80",
    		wstr: []uint16{0x80},
    	},
    	{
    		str:  "\xD7\x8A",
    		wstr: []uint16{0x05CA},
    	},
    	{
    		str:  "\xDF\xBF",
    		wstr: []uint16{0x07FF},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 09:26:16 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/eventlog.go

    )
    
    //sys	RegisterEventSource(uncServerName *uint16, sourceName *uint16) (handle Handle, err error) [failretval==0] = advapi32.RegisterEventSourceW
    //sys	DeregisterEventSource(handle Handle) (err error) = advapi32.DeregisterEventSource
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 825 bytes
    - Viewed (0)
  10. src/internal/syscall/windows/security_windows.go

    	AuthFlags       uint32
    	FullName        *uint16
    	UsrComment      *uint16
    	Parms           *uint16
    	Workstations    *uint16
    	LastLogon       uint32
    	LastLogoff      uint32
    	AcctExpires     uint32
    	MaxStorage      uint32
    	UnitsPerWeek    uint32
    	LogonHours      *byte
    	BadPwCount      uint32
    	NumLogons       uint32
    	LogonServer     *uint16
    	CountryCode     uint32
    	CodePage        uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top