Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 134 for Int16 (0.07 sec)

  1. tensorflow/compiler/mlir/lite/quantization/tools/tflite_op_coverage_spec_getters_gen.cc

    #include "tsl/platform/regexp.h"
    
    using llvm::LessRecord;
    using llvm::raw_ostream;
    using llvm::Record;
    using llvm::RecordKeeper;
    using mlir::tblgen::Operator;
    
    enum class InputDataType { INT8, UINT8, INT16 };
    
    // One InputDataType will be likely mapped to multiple types in near future so
    // the two structures are separated.
    const std::map<std::string, std::string> &GetTypeToStringRepresentation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_386.go

    	Off       int64
    	Reclen    uint16
    	Type      uint8
    	Name      [256]int8
    	Pad_cgo_0 [1]byte
    }
    
    type Fsid struct {
    	X__val [2]int32
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Pid    int32
    }
    
    type RawSockaddrInet4 struct {
    	Family uint16
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. src/syscall/ztypes_linux_amd64.go

    	Off       int64
    	Reclen    uint16
    	Type      uint8
    	Name      [256]int8
    	Pad_cgo_0 [5]byte
    }
    
    type Fsid struct {
    	X__val [2]int32
    }
    
    type Flock_t struct {
    	Type      int16
    	Whence    int16
    	Pad_cgo_0 [4]byte
    	Start     int64
    	Len       int64
    	Pid       int32
    	Pad_cgo_1 [4]byte
    }
    
    type RawSockaddrInet4 struct {
    	Family uint16
    	Port   uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/value.go

    		v.Fatalf("op %s doesn't have a uint8 aux field", v.Op)
    	}
    	return uint8(v.AuxInt)
    }
    
    func (v *Value) AuxInt16() int16 {
    	if opcodeTable[v.Op].auxType != auxInt16 {
    		v.Fatalf("op %s doesn't have an int16 aux field", v.Op)
    	}
    	return int16(v.AuxInt)
    }
    
    func (v *Value) AuxInt32() int32 {
    	if opcodeTable[v.Op].auxType != auxInt32 {
    		v.Fatalf("op %s doesn't have an int32 aux field", v.Op)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. src/go/types/builtins_test.go

    	{"make", `var l    byte ; _ = make([]int8      , l   )`, `func([]int8, byte) []int8`},
    	{"make", `                _ = make([]int16     , 0, 0)`, `func([]int16, int, int) []int16`},
    	{"make", `var l    int16; _ = make([]string    , l, 0)`, `func([]string, int16, int) []string`},
    	{"make", `var    c int32; _ = make([]float64   , 0, c)`, `func([]float64, int, int32) []float64`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/builtins_test.go

    	{"make", `var l    byte ; _ = make([]int8      , l   )`, `func([]int8, byte) []int8`},
    	{"make", `                _ = make([]int16     , 0, 0)`, `func([]int16, int, int) []int16`},
    	{"make", `var l    int16; _ = make([]string    , l, 0)`, `func([]string, int16, int) []string`},
    	{"make", `var    c int32; _ = make([]float64   , 0, c)`, `func([]float64, int, int32) []float64`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 18:06:31 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/magic.go

    // umagicOKn reports whether we should strength reduce an unsigned n-bit divide by c.
    // We can strength reduce when c != 0 and c is not a power of two.
    func umagicOK8(c int8) bool   { return c&(c-1) != 0 }
    func umagicOK16(c int16) bool { return c&(c-1) != 0 }
    func umagicOK32(c int32) bool { return c&(c-1) != 0 }
    func umagicOK64(c int64) bool { return c&(c-1) != 0 }
    
    type umagicData struct {
    	s int64  // ⎡log2(c)⎤
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/a.out.go

    // https://openpowerfoundation.org/?resource_lib=64-bit-elf-v2-abi-specification-power-architecture
    var PPC64DWARFRegisters = map[int16]int16{}
    
    func init() {
    	// f assigns dwarfregister[from:to] = (base):(to-from+base)
    	f := func(from, to, base int16) {
    		for r := int16(from); r <= to; r++ {
    			PPC64DWARFRegisters[r] = r - from + base
    		}
    	}
    	f(REG_R0, REG_R31, 0)
    	f(REG_F0, REG_F31, 32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. src/encoding/gob/codec_test.go

    		t.Error("wrong underflow error for int8:", err)
    	}
    
    	// int16
    	b.Reset()
    	it = inputT{
    		Maxi: math.MaxInt16 + 1,
    	}
    	type outi16 struct {
    		Maxi int16
    		Mini int16
    	}
    	var o2 outi16
    	enc.Encode(it)
    	err = dec.Decode(&o2)
    	if err == nil || err.Error() != `value for "Maxi" out of range` {
    		t.Error("wrong overflow error for int16:", err)
    	}
    	it = inputT{
    		Mini: math.MinInt16 - 1,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/parse.go

    	if !ok {
    		return 0
    	}
    	var op int16
    	switch p.next().ScanToken {
    	case lex.LSH:
    		op = 0
    	case lex.RSH:
    		op = 1
    	case lex.ARR:
    		op = 2
    	case lex.ROT:
    		// following instructions on ARM64 support rotate right
    		// AND, ANDS, TST, BIC, BICS, EON, EOR, ORR, MVN, ORN
    		op = 3
    	}
    	tok := p.next()
    	str := tok.String()
    	var count int16
    	switch tok.ScanToken {
    	case scanner.Ident:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top