Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 358 for fInt16 (0.11 sec)

  1. schema/field_test.go

    	for _, f := range fields {
    		checkSchemaField(t, user, f, func(f *schema.Field) {})
    	}
    }
    
    type (
    	ID      int64
    	INT     int
    	INT8    int8
    	INT16   int16
    	INT32   int32
    	INT64   int64
    	UINT    uint
    	UINT8   uint8
    	UINT16  uint16
    	UINT32  uint32
    	UINT64  uint64
    	FLOAT32 float32
    	FLOAT64 float64
    	BOOL    bool
    	STRING  string
    	TIME    time.Time
    	BYTES   []byte
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. src/encoding/binary/binary_test.go

    			math.Float64bits(math.E),
    		} {
    			want16 := uint16(value)
    			order.PutUint16(buf[:2], want16)
    			if got := order.Uint16(buf[:2]); got != want16 {
    				t.Errorf("PutUint16: Uint16 = %v, want %v", got, want16)
    			}
    			buf = order.AppendUint16(buf[:offset], want16)
    			if got := order.Uint16(buf[offset:]); got != want16 {
    				t.Errorf("AppendUint16: Uint16 = %v, want %v", got, want16)
    			}
    			if len(buf) != offset+2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    }
    
    type XSocket struct {
    	Xso_len      uint32
    	Xso_so       uint32
    	So_type      int16
    	So_options   int16
    	So_linger    int16
    	So_state     int16
    	So_pcb       uint32
    	Xso_protocol int32
    	Xso_family   int32
    	So_qlen      int16
    	So_incqlen   int16
    	So_qlimit    int16
    	So_timeo     int16
    	So_error     uint16
    	So_pgid      int32
    	So_oobmark   uint32
    	So_rcv       XSockbuf
    	So_snd       XSockbuf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    }
    
    type XSocket struct {
    	Xso_len      uint32
    	Xso_so       uint32
    	So_type      int16
    	So_options   int16
    	So_linger    int16
    	So_state     int16
    	So_pcb       uint32
    	Xso_protocol int32
    	Xso_family   int32
    	So_qlen      int16
    	So_incqlen   int16
    	So_qlimit    int16
    	So_timeo     int16
    	So_error     uint16
    	So_pgid      int32
    	So_oobmark   uint32
    	So_rcv       XSockbuf
    	So_snd       XSockbuf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/shift_test.go

    		{16, true, 16, true, func(n int16, s uint16) int16 { return n << s }},
    		{16, true, 16, false, func(n int16, s uint16) int16 { return n >> s }},
    		{16, false, 16, false, func(n uint16, s uint16) uint16 { return n >> s }},
    		{16, true, 8, true, func(n int16, s uint8) int16 { return n << s }},
    		{16, true, 8, false, func(n int16, s uint8) int16 { return n >> s }},
    		{16, false, 8, false, func(n uint16, s uint8) uint16 { return n >> s }},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  6. src/encoding/binary/binary.go

    	case uint8:
    		bs[0] = v
    	case []uint8:
    		copy(bs, v)
    	case *int16:
    		order.PutUint16(bs, uint16(*v))
    	case int16:
    		order.PutUint16(bs, uint16(v))
    	case []int16:
    		for i, x := range v {
    			order.PutUint16(bs[2*i:], uint16(x))
    		}
    	case *uint16:
    		order.PutUint16(bs, *v)
    	case uint16:
    		order.PutUint16(bs, v)
    	case []uint16:
    		for i, x := range v {
    			order.PutUint16(bs[2*i:], x)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. test/ken/convert.go

    		case tu16*100 + ti16:
    			u16 = uint16(v); i16 = int16(u16); w = big(i16)
    		case tu16*100 + tu16:
    			u16 = uint16(v); u16 = uint16(u16); w = big(u16)
    		case tu16*100 + ti32:
    			u16 = uint16(v); i32 = int32(u16); w = big(i32)
    		case tu16*100 + tu32:
    			u16 = uint16(v); u32 = uint32(u16); w = big(u32)
    		case tu16*100 + ti64:
    			u16 = uint16(v); i64 = int64(u16); w = big(i64)
    		case tu16*100 + tu64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 14.9K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_loong64.go

    }
    
    type RawSockaddrInet6 struct {
    	Family   uint16
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Family uint16
    	Path   [108]int8
    }
    
    type RawSockaddrLinklayer struct {
    	Family   uint16
    	Protocol uint16
    	Ifindex  int32
    	Hatype   uint16
    	Pkttype  uint8
    	Halen    uint8
    	Addr     [8]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_arm64.go

    	Family uint16
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]uint8
    }
    
    type RawSockaddrInet6 struct {
    	Family   uint16
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Family uint16
    	Path   [108]int8
    }
    
    type RawSockaddrLinklayer struct {
    	Family   uint16
    	Protocol uint16
    	Ifindex  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_mips64le.go

    	Family uint16
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]uint8
    }
    
    type RawSockaddrInet6 struct {
    	Family   uint16
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Family uint16
    	Path   [108]int8
    }
    
    type RawSockaddrLinklayer struct {
    	Family   uint16
    	Protocol uint16
    	Ifindex  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top