Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Int8 (0.11 sec)

  1. src/reflect/all_test.go

    	},
    	{struct {
    		x struct {
    			a int8
    			b int8
    			c int8
    			d int32
    		}
    	}{},
    		"struct { a int8; b int8; c int8; d int32 }",
    	},
    	{struct {
    		x struct {
    			a int8
    			b int8
    			c int8
    			d int8
    			e int32
    		}
    	}{},
    		"struct { a int8; b int8; c int8; d int8; e int32 }",
    	},
    	{struct {
    		x struct {
    			a int8
    			b int8
    			c int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

      && symIsRO(scon)
      => (MakeResult (Eq8 (Load <typ.Int8> sptr mem) (Const8 <typ.Int8> [int8(read8(scon,0))])) mem)
    
    (StaticLECall {callAux} (Addr {scon} (SB)) sptr (Const64 [1]) mem)
      && isSameCall(callAux, "runtime.memequal")
      && symIsRO(scon)
      => (MakeResult (Eq8 (Load <typ.Int8> sptr mem) (Const8 <typ.Int8> [int8(read8(scon,0))])) mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/reflect/value.go

    // It panics if v's Kind is not [Int], [Int8], [Int16], [Int32], or [Int64], or if [Value.CanSet] returns false.
    func (v Value) SetInt(x int64) {
    	v.mustBeAssignable()
    	switch k := v.kind(); k {
    	default:
    		panic(&ValueError{"reflect.Value.SetInt", v.kind()})
    	case Int:
    		*(*int)(v.ptr) = int(x)
    	case Int8:
    		*(*int8)(v.ptr) = int8(x)
    	case Int16:
    		*(*int16)(v.ptr) = int16(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    	a3    uint8 // 3rd source operand, Prog.RestArgs[XXX]
    	a4    uint8 // Prog.To
    	a5    uint8 // 2nd destination operand, Prog.RegTo2 or Prog.RestArgs[XXX]
    	type_ int8
    	size_ int8 // the value of this field is not static, use the size() method to return the value
    	param int16
    	flag  int8
    	scond uint8
    }
    
    func IsAtomicInstruction(as obj.As) bool {
    	if _, ok := atomicLDADD[as]; ok {
    		return true
    	}
    	if _, ok := atomicSWP[as]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    	a3    uint8  // p.RestArgs[0]  (obj.AddrPos)
    	a4    uint8  // p.RestArgs[1]
    	a5    uint8  // p.RestARgs[2]
    	a6    uint8  // p.To (obj.Addr)
    	type_ int8   // cases in asmout below. E.g., 44 = st r,(ra+rb); 45 = ld (ra+rb), r
    	size  int8   // Text space in bytes to lay operation
    
    	// A prefixed instruction is generated by this opcode. This cannot be placed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    		return nil
    	}
    
    	// Initialize classes for all arguments.
    	p.From.Class = int8(c.aclass(&p.From) + 1)
    	p.To.Class = int8(c.aclass(&p.To) + 1)
    	for i := range p.RestArgs {
    		p.RestArgs[i].Addr.Class = int8(c.aclass(&p.RestArgs[i].Addr) + 1)
    	}
    
    	// Mirrors the argument list in Optab.
    	args := [...]int8{
    		p.From.Class - 1,
    		C_NONE, // p.Reg
    		C_NONE, // p.RestArgs[0]
    		C_NONE, // p.RestArgs[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    def TFL_BatchMatMulOp : TFL_Op<"batch_matmul", [
       Pure,
       TFL_OperandHasAtleastRank<0, 2>,
       TFL_OperandHasAtleastRank<1, 2>,
       QuantizableResult,
       PredOpTrait<"x and output must have same element type or they are int8 and int32",
           Or<[TFL_TCresVTEtIsSameAsOp<0, 0>,
               And<[CPred<"getElementTypeOrSelf($_op.getOperand(0)).isInteger(8)">,
                    CPred<"getElementTypeOrSelf($_op.getOperand(1)).isInteger(8)">,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    	tt   uint8
    	code uint8
    	op   [4]uint8
    }
    
    const (
    	Yxxx = iota
    	Ynone
    	Yi0 // $0
    	Yi1 // $1
    	Yu2 // $x, x fits in uint2
    	Yi8 // $x, x fits in int8
    	Yu8 // $x, x fits in uint8
    	Yu7 // $x, x in 0..127 (fits in both int8 and uint8)
    	Ys32
    	Yi32
    	Yi64
    	Yiauto
    	Yal
    	Ycl
    	Yax
    	Ycx
    	Yrb
    	Yrl
    	Yrl32 // Yrl on 32-bit system
    	Yrf
    	Yf0
    	Yrx
    	Ymb
    	Yml
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK: stablehlo.dynamic_slice
    // CHECK-NOT: tfl.bitcast
    // CHECK-NOT: tfl.minimum
    // CHECK-NOT: tfl.maximum
    // CHECK-NOT: tfl.slice
    
    // -----
    
    // Tests that `stablehlo.add` with both operands int8 UniformQuantizedType is
    // properly converted into `tfl.add`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    // number of columns in [Rows].
    //
    // Scan converts columns read from the database into the following
    // common Go types and special types provided by the sql package:
    //
    //	*string
    //	*[]byte
    //	*int, *int8, *int16, *int32, *int64
    //	*uint, *uint8, *uint16, *uint32, *uint64
    //	*bool
    //	*float32, *float64
    //	*interface{}
    //	*RawBytes
    //	*Rows (cursor value)
    //	any type implementing Scanner (see Scanner docs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top