Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 411 for fInt16 (0.48 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Pid    int32
    }
    
    type Termios struct {
    	Cflag uint32
    	Iflag uint32
    	Lflag uint32
    	Oflag uint32
    	Cc    [11]uint8
    }
    
    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    type W_Mnth struct {
    	Hid   [4]byte
    	Size  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. test/codegen/shift.go

    	// ppc64x:-".*RLWINM",-".*RLDICR",".*CLRLSLDI"
    	f += tab[uint16(v)|h]
    	// ppc64x:-".*AND",-"RLDICR",".*CLRLSLDI"
    	f += tab[v&0xff]
    	// ppc64x:-".*AND",".*CLRLSLWI"
    	f += 2 * uint32(uint16(d))
    	// ppc64x:-".*AND",-"RLDICR",".*CLRLSLDI"
    	g := 2 * uint64(uint32(d))
    	return f, g
    }
    
    func checkCombinedShifts(v8 uint8, v16 uint16, v32 uint32, x32 int32, v64 uint64) (uint8, uint16, uint32, uint64, int64) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. test/fixedbugs/issue66066b.go

    package main
    
    //go:noinline
    func f32(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, x int32) uint64 {
    	return uint64(uint32(x))
    }
    
    //go:noinline
    func f16(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, x int16) uint64 {
    	return uint64(uint16(x))
    }
    
    //go:noinline
    func f8(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, x int8) uint64 {
    	return uint64(uint8(x))
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 17:35:29 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/reflect/iter.go

    	case Int8:
    		return rangeNum[int8](v.Int())
    	case Int16:
    		return rangeNum[int16](v.Int())
    	case Int32:
    		return rangeNum[int32](v.Int())
    	case Int64:
    		return rangeNum[int64](v.Int())
    	case Uint:
    		return rangeNum[uint](v.Uint())
    	case Uint8:
    		return rangeNum[uint8](v.Uint())
    	case Uint16:
    		return rangeNum[uint16](v.Uint())
    	case Uint32:
    		return rangeNum[uint32](v.Uint())
    	case Uint64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/roundtrip_test.go

    			obj:  uint32(0),
    		},
    		{
    			name: "int16 max",
    			obj:  int16(math.MaxInt16),
    		},
    		{
    			name: "int16 min",
    			obj:  int16(math.MinInt16),
    		},
    		{
    			name: "int16 zero",
    			obj:  int16(math.MinInt16),
    		},
    		{
    			name: "uint16 max",
    			obj:  uint16(math.MaxUint16),
    		},
    		{
    			name: "uint16 zero",
    			obj:  uint16(0),
    		},
    		{
    			name: "int8 max",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 21:48:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/encoding/json/decode_test.go

    			}
    		})
    	}
    }
    
    type All struct {
    	Bool    bool
    	Int     int
    	Int8    int8
    	Int16   int16
    	Int32   int32
    	Int64   int64
    	Uint    uint
    	Uint8   uint8
    	Uint16  uint16
    	Uint32  uint32
    	Uint64  uint64
    	Uintptr uintptr
    	Float32 float32
    	Float64 float64
    
    	Foo  string `json:"bar"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go

    type Dirent struct {
    	Ino    uint64
    	Off    int64
    	Reclen uint16
    	Type   uint8
    	Name   [256]int8
    	_      [5]byte
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Pid    int32
    	_      int16
    	_      [2]byte
    }
    
    type DmNameList struct {
    	Dev  uint64
    	Next uint32
    	Name [0]byte
    	_    [4]byte
    }
    
    const (
    	FADV_DONTNEED = 0x4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top