Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,046 for fInt16 (0.28 sec)

  1. src/testing/quick/quick_test.go

    }
    
    func fStruct(a TestStruct) TestStruct { return a }
    
    type TestStructAlias TestStruct
    
    func fStructAlias(a TestStructAlias) TestStructAlias { return a }
    
    func fUint16(a uint16) uint16 { return a }
    
    type TestUint16Alias uint16
    
    func fUint16Alias(a TestUint16Alias) TestUint16Alias { return a }
    
    func fUint32(a uint32) uint32 { return a }
    
    type TestUint32Alias uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. tensorflow/c/kernels/ops/bitcast.cc

          "T: {bfloat16, half, float, double, int64, int32, uint8, uint16, "
          "uint32, uint64, int8, int16, complex64, complex128, qint8, quint8, "
          "qint16, quint16, qint32}");
      TF_OpDefinitionBuilderAddAttr(
          op_builder,
          "type: {bfloat16, half, float, double, int64, int32, uint8, uint16, "
          "uint32, uint64, int8, int16, complex64, complex128, qint8, quint8, "
          "qint16, quint16, qint32}");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 07:51:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. test/intcvt.go

    	//	chku8(uint8(f32), 0)
    	//	chku8(uint8(f64), 0)
    
    	chku16(uint16(i8), ci8&0xffff)
    	chku16(uint16(i16), ci16&0xffff)
    	chku16(uint16(i32), ci32&0xffff)
    	chku16(uint16(i64), ci64&0xffff)
    	chku16(uint16(u8), cu8&0xffff)
    	chku16(uint16(u16), cu16&0xffff)
    	chku16(uint16(u32), cu32&0xffff)
    	chku16(uint16(u64), cu64&0xffff)
    	//	chku16(uint16(f32), 0)
    	//	chku16(uint16(f64), 0)
    
    	chku32(uint32(i8), ci8&0xffffffff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    	Ospeed uint32
    }
    
    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    const (
    	AT_FDCWD            = 0xfffafdcd
    	AT_SYMLINK_NOFOLLOW = 0x1
    	AT_REMOVEDIR        = 0x2
    	AT_EACCESS          = 0x4
    	AT_SYMLINK_FOLLOW   = 0x8
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR    = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	Lastchange  Timeval
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    	Metric  int32
    }
    
    type IfmaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go

    	Lastchange  Timeval
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    	Metric  int32
    }
    
    type IfmaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top