Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for uint16 (0.22 sec)

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

    	Protocol uint16
    	Ifindex  int32
    	Hatype   uint16
    	Pkttype  uint8
    	Halen    uint8
    	Addr     [8]uint8
    }
    
    type RawSockaddrNetlink struct {
    	Family uint16
    	Pad    uint16
    	Pid    uint32
    	Groups uint32
    }
    
    type RawSockaddrHCI struct {
    	Family  uint16
    	Dev     uint16
    	Channel uint16
    }
    
    type RawSockaddrL2 struct {
    	Family      uint16
    	Psm         uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	// Reserved uint16 =  0x0050-58
    	// Reserved uint16 =  0x0059-5C
    	// Unassigned uint16 =  0x005D-5F
    	// Reserved uint16 =  0x0060-66
    	http2cipher_TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 uint16 = 0x0067
    	http2cipher_TLS_DH_DSS_WITH_AES_256_CBC_SHA256  uint16 = 0x0068
    	http2cipher_TLS_DH_RSA_WITH_AES_256_CBC_SHA256  uint16 = 0x0069
    	http2cipher_TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 uint16 = 0x006A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    		x := v_0.Args[0]
    		y := v_0.Args[1]
    		v.reset(OpSelect0)
    		v.Type = typ.UInt64
    		v0 := b.NewValue0(v.Pos, OpPPC64SUBE, types.NewTuple(typ.UInt64, typ.UInt64))
    		v1 := b.NewValue0(v.Pos, OpSelect1, typ.UInt64)
    		v2 := b.NewValue0(v.Pos, OpPPC64SUBCconst, types.NewTuple(typ.UInt64, typ.UInt64))
    		v2.AuxInt = int64ToAuxInt(0)
    		v2.AddArg(c)
    		v1.AddArg(v2)
    		v0.AddArg3(x, y, v1)
    		v.AddArg(v0)
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. doc/go_spec.html

    [<a href="#Go_1.21">Go 1.21</a>]:
    </p>
    <pre class="grammar">
    Types:
    	any bool byte comparable
    	complex64 complex128 error float32 float64
    	int int8 int16 int32 int64 rune string
    	uint uint8 uint16 uint32 uint64 uintptr
    
    Constants:
    	true false iota
    
    Zero value:
    	nil
    
    Functions:
    	append cap clear close complex copy delete imag len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	{ir.OLSH, types.TINT16, types.TUINT16}:  ssa.OpLsh16x16,
    	{ir.OLSH, types.TUINT16, types.TUINT16}: ssa.OpLsh16x16,
    	{ir.OLSH, types.TINT16, types.TUINT32}:  ssa.OpLsh16x32,
    	{ir.OLSH, types.TUINT16, types.TUINT32}: ssa.OpLsh16x32,
    	{ir.OLSH, types.TINT16, types.TUINT64}:  ssa.OpLsh16x64,
    	{ir.OLSH, types.TUINT16, types.TUINT64}: ssa.OpLsh16x64,
    
    	{ir.OLSH, types.TINT32, types.TUINT8}:   ssa.OpLsh32x8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top