Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 108 for Int8 (0.1 sec)

  1. src/runtime/runtime2.go

    	parkingOnChan atomic.Bool
    	// inMarkAssist indicates whether the goroutine is in mark assist.
    	// Used by the execution tracer.
    	inMarkAssist bool
    	coroexit     bool // argument to coroswitch_m
    
    	raceignore    int8  // ignore race detection events
    	nocgocallback bool  // whether disable callback from C
    	tracking      bool  // whether we're tracking this G for sched latency statistics
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. doc/go_spec.html

    uint8(^1)  // illegal: same as uint8(-2), -2 cannot be represented as a uint8
    ^uint8(1)  // typed uint8 constant, same as 0xFF ^ uint8(1) = uint8(0xFE)
    int8(^1)   // same as int8(-2)
    ^int8(1)   // same as -1 ^ int8(1) = -2
    </pre>
    
    <p>
    Implementation restriction: A compiler may use rounding while
    computing untyped floating-point or complex constant expressions; see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    // The type of data stored in a tensor.
    enum TensorType : byte {
      FLOAT32 = 0,
      FLOAT16 = 1,
      INT32 = 2,
      UINT8 = 3,
      INT64 = 4,
      STRING = 5,
      BOOL = 6,
      INT16 = 7,
      COMPLEX64 = 8,
      INT8 = 9,
      FLOAT64 = 10,
      COMPLEX128 = 11,
      UINT64 = 12,
      // Experimental: Resource and variant types are experimental, that are subject
      // to change. Do not implement custom kernels using resource & variant types
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		// need this case.
    		return callee.Linksym()
    	}
    
    	return callee.LinksymABI(callee.Func.ABI)
    }
    
    func min8(a, b int8) int8 {
    	if a < b {
    		return a
    	}
    	return b
    }
    
    func max8(a, b int8) int8 {
    	if a > b {
    		return a
    	}
    	return b
    }
    
    // deferStructFnField is the field index of _defer.fn.
    const deferStructFnField = 4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K 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/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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top