Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,573 for int128 (0.49 sec)

  1. test/fixedbugs/issue19515.go

    // compile
    
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 19515: compiler panics on spilling int128 constant.
    
    package x
    
    type VScrollPanel struct {
    	x, y int
    }
    
    type Color struct {
    	R, G, B, A float32
    }
    
    func maxF(a, b float32) float32 {
    	if a > b {
    		return 0
    	}
    	return 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 22:55:52 UTC 2017
    - 931 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/op.go

    type ValAndOff int64
    
    func (x ValAndOff) Val() int32   { return int32(int64(x) >> 32) }
    func (x ValAndOff) Val64() int64 { return int64(x) >> 32 }
    func (x ValAndOff) Val16() int16 { return int16(int64(x) >> 32) }
    func (x ValAndOff) Val8() int8   { return int8(int64(x) >> 32) }
    
    func (x ValAndOff) Off64() int64 { return int64(int32(x)) }
    func (x ValAndOff) Off() int32   { return int32(x) }
    
    func (x ValAndOff) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	case "Bool":
    		return "bool"
    	case "Int8":
    		return "int8"
    	case "Int16":
    		return "int16"
    	case "Int32":
    		return "int32"
    	case "Int64":
    		return "int64"
    	case "Int128":
    		return "int128"
    	case "UInt8":
    		return "uint8"
    	case "Float32":
    		return "float32"
    	case "Float64":
    		return "float64"
    	case "CallOff":
    		return "int32"
    	case "SymOff":
    		return "int32"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    func auxIntToBool(i int64) bool {
    	if i == 0 {
    		return false
    	}
    	return true
    }
    func auxIntToInt8(i int64) int8 {
    	return int8(i)
    }
    func auxIntToInt16(i int64) int16 {
    	return int16(i)
    }
    func auxIntToInt32(i int64) int32 {
    	return int32(i)
    }
    func auxIntToInt64(i int64) int64 {
    	return i
    }
    func auxIntToUint8(i int64) uint8 {
    	return uint8(i)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. src/net/netip/uint128.go

    func (u uint128) xor(m uint128) uint128 {
    	return uint128{u.hi ^ m.hi, u.lo ^ m.lo}
    }
    
    // or returns the bitwise OR of u and m (u|m).
    func (u uint128) or(m uint128) uint128 {
    	return uint128{u.hi | m.hi, u.lo | m.lo}
    }
    
    // not returns the bitwise NOT of u.
    func (u uint128) not() uint128 {
    	return uint128{^u.hi, ^u.lo}
    }
    
    // subOne returns u - 1.
    func (u uint128) subOne() uint128 {
    	lo, borrow := bits.Sub64(u.lo, 1, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 21:28:44 UTC 2022
    - 2.2K bytes
    - Viewed (1)
  6. src/cmd/compile/internal/types/type.go

    	// TSSA types. HasPointers assumes these are pointer-free.
    	TypeInvalid   = newSSA("invalid")
    	TypeMem       = newSSA("mem")
    	TypeFlags     = newSSA("flags")
    	TypeVoid      = newSSA("void")
    	TypeInt128    = newSSA("int128")
    	TypeResultMem = newResults([]*Type{TypeMem})
    )
    
    func init() {
    	TypeInt128.width = 16
    	TypeInt128.align = 8
    }
    
    // NewNamed returns a new named type for the given type name. obj should be an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/sets/int32.go

    limitations under the License.
    */
    
    package sets
    
    // Int32 is a set of int32s, implemented via map[int32]struct{} for minimal memory consumption.
    //
    // Deprecated: use generic Set instead.
    // new ways:
    // s1 := Set[int32]{}
    // s2 := New[int32]()
    type Int32 map[int32]Empty
    
    // NewInt32 creates a Int32 from a list of values.
    func NewInt32(items ...int32) Int32 {
    	return Int32(New[int32](items...))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "DIVQ", argLength: 2, reg: gp11div, typ: "(Int64,Int64)", asm: "IDIVQ", aux: "Bool", clobberFlags: true},
    		{name: "DIVL", argLength: 2, reg: gp11div, typ: "(Int32,Int32)", asm: "IDIVL", aux: "Bool", clobberFlags: true},
    		{name: "DIVW", argLength: 2, reg: gp11div, typ: "(Int16,Int16)", asm: "IDIVW", aux: "Bool", clobberFlags: true},
    		{name: "DIVQU", argLength: 2, reg: gp11div, typ: "(UInt64,UInt64)", asm: "DIVQ", clobberFlags: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. src/math/rand/v2/regress_test.go

    	int32(260808523),  // Int32()
    	int32(851126509),  // Int32()
    	int32(1682717115), // Int32()
    	int32(1569423431), // Int32()
    	int32(1092181682), // Int32()
    	int32(157239171),  // Int32()
    	int32(709379364),  // Int32()
    
    	int32(0),          // Int32N(1)
    	int32(6),          // Int32N(10)
    	int32(8),          // Int32N(32)
    	int32(704922),     // Int32N(1048576)
    	int32(245656),     // Int32N(1048577)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:03:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    	Index     uint16
    	Flags     int32
    	Addrs     int32
    	Addrflags int32
    	Metric    int32
    }
    
    type IfmaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Flags   int32
    	Addrs   int32
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Name    [16]int8
    	What    uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top