Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for 3bffffffffffffffff (0.19 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    			fixme:   "decoding bigint to interface{} must not produce math/big.Int",
    		},
    		{
    			example: hex("3bffffffffffffffff"),
    			reject:  "-2^64-1 overflows int64 and falling back to float64 (as with JSON) loses distinction between float and integer",
    		},
    		{
    			example: hex("c349010000000000000000"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    		},
    		{
    			name:          "int64 min negative value",
    			in:            hex("3b7fffffffffffffff"), // -9223372036854775808
    			want:          int64(-9223372036854775808),
    			assertOnError: assertNilError,
    		},
    		{
    			name: "min negative integer value supported by cbor: -2^64",
    			in:   hex("3bffffffffffffffff"), // -18446744073709551616
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_andor_test.go

    		}
    	}
    }
    
    func TestAnd64(t *testing.T) {
    	// Basic sanity check.
    	x := uint64(0xffffffffffffffff)
    	sink = &x
    	for i := uint64(0); i < 64; i++ {
    		old := x
    		v := atomic.And64(&x, ^(1 << i))
    		if r := uint64(0xffffffffffffffff) << (i + 1); x != r || v != old {
    			t.Fatalf("clearing bit %#x: want %#x, got new %#x and old %#v", uint64(1<<i), r, x, v)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 27 20:49:32 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_amd64.s

    DATA andMask<>+0x68(SB)/8, $0x0000000000000000
    DATA andMask<>+0x70(SB)/8, $0xffffffffffffffff
    DATA andMask<>+0x78(SB)/8, $0x0000000000000000
    DATA andMask<>+0x80(SB)/8, $0xffffffffffffffff
    DATA andMask<>+0x88(SB)/8, $0x00000000000000ff
    DATA andMask<>+0x90(SB)/8, $0xffffffffffffffff
    DATA andMask<>+0x98(SB)/8, $0x000000000000ffff
    DATA andMask<>+0xa0(SB)/8, $0xffffffffffffffff
    DATA andMask<>+0xa8(SB)/8, $0x0000000000ffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    DATA masks<>+0x78(SB)/8, $0x0000000000000000
    DATA masks<>+0x80(SB)/8, $0xffffffffffffffff
    DATA masks<>+0x88(SB)/8, $0x0000000000000000
    DATA masks<>+0x90(SB)/8, $0xffffffffffffffff
    DATA masks<>+0x98(SB)/8, $0x00000000000000ff
    DATA masks<>+0xa0(SB)/8, $0xffffffffffffffff
    DATA masks<>+0xa8(SB)/8, $0x000000000000ffff
    DATA masks<>+0xb0(SB)/8, $0xffffffffffffffff
    DATA masks<>+0xb8(SB)/8, $0x0000000000ffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/internal/fuzz/encoding_test.go

    			// break the parser. Verify that integers in the opposite bases still
    			// parse correctly.
    			in: `go test fuzz v1
    int(0x0)
    int32(0x41)
    int64(0xfffffffff)
    uint32(0xcafef00d)
    uint64(0xffffffffffffffff)
    uint8(0b0000000)
    byte(0x0)
    byte('\000')
    byte('\u0000')
    byte('\'')
    math.Float64frombits(9221120237041090562)
    math.Float32frombits(2143289345)`,
    			want: `go test fuzz v1
    int(0)
    rune('A')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm.go

    // p256One is one in the Montgomery domain.
    var p256One = p256Element{0x0000000000000001, 0xffffffff00000000,
    	0xffffffffffffffff, 0x00000000fffffffe}
    
    var p256Zero = p256Element{}
    
    // p256P is 2²⁵⁶ - 2²²⁴ + 2¹⁹² + 2⁹⁶ - 1 in the Montgomery domain.
    var p256P = p256Element{0xffffffffffffffff, 0x00000000ffffffff,
    	0x0000000000000000, 0xffffffff00000001}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/crypto/sha256/sha256block_amd64.s

    DATA shuff_00BA<>+0x08(SB)/8, $0xFFFFFFFFFFFFFFFF
    DATA shuff_00BA<>+0x10(SB)/8, $0x0b0a090803020100
    DATA shuff_00BA<>+0x18(SB)/8, $0xFFFFFFFFFFFFFFFF
    GLOBL shuff_00BA<>(SB), 8, $32
    
    // shuffle xDxC -> DC00
    DATA shuff_DC00<>+0x00(SB)/8, $0xFFFFFFFFFFFFFFFF
    DATA shuff_DC00<>+0x08(SB)/8, $0x0b0a090803020100
    DATA shuff_DC00<>+0x10(SB)/8, $0xFFFFFFFFFFFFFFFF
    DATA shuff_DC00<>+0x18(SB)/8, $0x0b0a090803020100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  9. test/codegen/bits.go

    	a[0] = x ^ (y ^ 0xffffffff)
    
    	// arm64:`EON\t`,-`EOR`,-`MVN`
    	a[1] = ^(y ^ z)
    
    	// arm64:`EON\t`,-`XOR`
    	a[2] = x ^ ^z
    
    	// arm64:`EON\t`,-`EOR`,-`MVN`
    	return n ^ (m ^ 0xffffffffffffffff)
    }
    
    func op_orn(x, y uint32) uint32 {
    	// arm64:`ORN\t`,-`ORR`
    	return x | ^y
    }
    
    // check bitsets
    func bitSetPowerOf2Test(x int) bool {
    	// amd64:"BTL\t[$]3"
    	return x&8 == 8
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/fmt/fmt_test.go

    	{"%#v", new(byte), "(*uint8)(0xPTR)"},
    	{"%#v", TestFmtInterface, "(func(*testing.T))(0xPTR)"},
    	{"%#v", make(chan int), "(chan int)(0xPTR)"},
    	{"%#v", uint64(1<<64 - 1), "0xffffffffffffffff"},
    	{"%#v", 1000000000, "1000000000"},
    	{"%#v", map[string]int{"a": 1}, `map[string]int{"a":1}`},
    	{"%#v", map[string]B{"a": {1, 2}}, `map[string]fmt_test.B{"a":fmt_test.B{I:1, j:2}}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top