Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,686 for intp (0.06 sec)

  1. test/fixedbugs/bug452.go

    func foo() int {
    	return a + 1 + b + 2 + c + 3 + d + 4 + e + 5 + f + 6 + g + 7 + h + 8 + i + 9 + j + 10 +
    		k + 1 + l + 2 + m + 3 + n + 4 + o + 5 + p + 6 + q + 7 + r + 8 + s + 9 + t + 10 +
    		u + 1 + v + 2 + w + 3 + x + 4 + y + 5 + z + 6 + A + 7 + B + 8 + C + 9 + D + 10 +
    		E + 1 + F + 2 + G + 3
    }
    
    func bar() int8 {
    	var (
    		W int16
    		X int32
    		Y int32
    		Z int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 915 bytes
    - Viewed (0)
  2. test/fixedbugs/issue19113.go

    import "reflect"
    
    var tests = []interface{}{
    	func(x int, s int) int {
    		return x << s
    	},
    	func(x int, s int64) int {
    		return x << s
    	},
    	func(x int, s int32) int {
    		return x << s
    	},
    	func(x int, s int16) int {
    		return x << s
    	},
    	func(x int, s int8) int {
    		return x << s
    	},
    	func(x int, s int) int {
    		return x >> s
    	},
    	func(x int, s int64) int {
    		return x >> s
    	},
    	func(x int, s int32) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 15 23:13:09 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  3. test/literal.go

    package main
    
    var nbad int
    
    func assert(cond bool, msg string) {
    	if !cond {
    		if nbad == 0 {
    			print("BUG")
    		}
    		nbad++
    		print(" ", msg)
    	}
    }
    
    func equal(a, b float32) bool {
    	return a == b
    }
    
    func main() {
    	// bool
    	var t bool = true
    	var f bool = false
    	assert(t == !f, "bool")
    
    	// int8
    	var i00 int8 = 0
    	var i01 int8 = 1
    	var i02 int8 = -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go

    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [12]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go

    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [12]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go

    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [12]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/lstm_quantized.mlir

    // CHECK-NEXT:       type: INT8,
    // CHECK-NEXT:       buffer: 1,
    // CHECK-NEXT:       name: "arg0",
    // CHECK-NEXT:       quantization: {
    // CHECK-NEXT:         scale: [ 0.037248 ],
    // CHECK-NEXT:         zero_point: [ -19 ]
    // CHECK-NEXT:       },
    // CHECK-NEXT:       has_rank: true
    // CHECK-NEXT:     }, {
    // CHECK-NEXT:       shape: [ 2048, 528 ],
    // CHECK-NEXT:       type: INT8,
    // CHECK-NEXT:       buffer: 2,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  8. test/codegen/bitfield.go

    }
    
    func sbfx8(x int8) int64 {
    	return int64(x >> 5) // arm64:"SBFX\t[$]5, R[0-9]+, [$]3"
    }
    
    // sbfx combinations.
    // merge shifts with sbfiz into sbfx.
    func sbfx9(x int32) int32 {
    	return (x << 3) >> 4 // arm64:"SBFX\t[$]1, R[0-9]+, [$]28",-"LSL",-"ASR"
    }
    
    // merge sbfx and sign-extension into sbfx.
    func sbfx10(x int32) int64 {
    	c := x + 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 06:11:32 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [46]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Xucred struct {
    	Version uint32
    	Uid     uint32
    	Ngroups int16
    	Groups  [16]uint32
    	_       *byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [46]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Xucred struct {
    	Version uint32
    	Uid     uint32
    	Ngroups int16
    	Groups  [16]uint32
    	_       *byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top