Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 93 for Int8 (0.07 sec)

  1. 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)
  2. src/cmd/compile/internal/ssa/opGen.go

    	{15, x86.REG_X7, -1, "X7"},
    	{16, 0, -1, "SB"},
    }
    var paramIntReg386 = []int8(nil)
    var paramFloatReg386 = []int8(nil)
    var gpRegMask386 = regMask(239)
    var fpRegMask386 = regMask(65280)
    var specialRegMask386 = regMask(0)
    var framepointerReg386 = int8(5)
    var linkReg386 = int8(-1)
    var registersAMD64 = [...]Register{
    	{0, x86.REG_AX, 0, "AX"},
    	{1, x86.REG_CX, 1, "CX"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  3. src/time/time.go

    func (t Time) MarshalBinary() ([]byte, error) {
    	var offsetMin int16 // minutes east of UTC. -1 is UTC.
    	var offsetSec int8
    	version := timeBinaryVersionV1
    
    	if t.Location() == UTC {
    		offsetMin = -1
    	} else {
    		_, offset := t.Zone()
    		if offset%60 != 0 {
    			version = timeBinaryVersionV2
    			offsetSec = int8(offset % 60)
    		}
    
    		offset /= 60
    		if offset < -32768 || offset == -1 || offset > 32767 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/go/doc/reader.go

    	"bool":       true,
    	"byte":       true,
    	"comparable": true,
    	"complex64":  true,
    	"complex128": true,
    	"error":      true,
    	"float32":    true,
    	"float64":    true,
    	"int":        true,
    	"int8":       true,
    	"int16":      true,
    	"int32":      true,
    	"int64":      true,
    	"rune":       true,
    	"string":     true,
    	"uint":       true,
    	"uint8":      true,
    	"uint16":     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. src/text/template/exec_test.go

    	MSIEmpty map[string]int
    	MXI      map[any]int
    	MII      map[int]int
    	MI32S    map[int32]string
    	MI64S    map[int64]string
    	MUI32S   map[uint32]string
    	MUI64S   map[uint64]string
    	MI8S     map[int8]string
    	MUI8S    map[uint8]string
    	SMSI     []map[string]int
    	// Empty interfaces; used to see if we can dig inside one.
    	Empty0 any // nil
    	Empty1 any
    	Empty2 any
    	Empty3 any
    	Empty4 any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    		// instantiated types must be sanitized
    		{`package g0; type t[P any] int; var x struct{ f t[int] }; var _ = x.f`, `x.f`, `g0.t[int]`},
    
    		// go.dev/issue/45096
    		{`package issue45096; func _[T interface{ ~int8 | ~int16 | ~int32  }](x T) { _ = x < 0 }`, `0`, `T`},
    
    		// go.dev/issue/47895
    		{`package p; import "unsafe"; type S struct { f int }; var s S; var _ = unsafe.Offsetof(s.f)`, `s.f`, `int`},
    
    		// go.dev/issue/50093
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/func.go

    func (f *Func) ConstBool(t *types.Type, c bool) *Value {
    	i := int64(0)
    	if c {
    		i = 1
    	}
    	return f.constVal(OpConstBool, t, i, true)
    }
    func (f *Func) ConstInt8(t *types.Type, c int8) *Value {
    	return f.constVal(OpConst8, t, int64(c), true)
    }
    func (f *Func) ConstInt16(t *types.Type, c int16) *Value {
    	return f.constVal(OpConst16, t, int64(c), true)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    # tf.Tensor([   -32     -5   -384 -28672], shape=(4,), dtype=int64)
    
    lhs = np.array([-2, 64, 101, 32], dtype=np.int8)
    rhs = np.array([-1, -5, -3, -14], dtype=np.int8)
    bitwise_ops.left_shift(lhs, rhs)
    # <tf.Tensor: shape=(4,), dtype=int8, numpy=array([ -2,  64, 101,  32], dtype=int8)>
    ```
      }];
    
      let arguments = (ins
        TF_IntTensor:$x,
        TF_IntTensor:$y
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. src/runtime/map_test.go

    type structKey struct {
    }
    
    func (structKey) String() string {
    	return "structKey"
    }
    
    func TestEmptyMapWithInterfaceKey(t *testing.T) {
    	var (
    		b    bool
    		i    int
    		i8   int8
    		i16  int16
    		i32  int32
    		i64  int64
    		ui   uint
    		ui8  uint8
    		ui16 uint16
    		ui32 uint32
    		ui64 uint64
    		uipt uintptr
    		f32  float32
    		f64  float64
    		c64  complex64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux.go

    	if n > len(sa.raw.Path) {
    		return nil, 0, EINVAL
    	}
    	if n == len(sa.raw.Path) && name[0] != '@' {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Family = AF_UNIX
    	for i := 0; i < n; i++ {
    		sa.raw.Path[i] = int8(name[i])
    	}
    	// length is family (uint16), name, NUL.
    	sl := _Socklen(2)
    	if n > 0 {
    		sl += _Socklen(n) + 1
    	}
    	if sa.raw.Path[0] == '@' || (sa.raw.Path[0] == 0 && sl > 3) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top