Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 1b7fffffffffffffff (0.08 sec)

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

    		},
    		{
    			name:          "int64 max positive value",
    			in:            hex("1b7fffffffffffffff"), // 9223372036854775807
    			want:          int64(9223372036854775807),
    			assertOnError: assertNilError,
    		},
    		{
    			name: "max positive integer value supported by cbor: 2^64 - 1",
    			in:   hex("1bffffffffffffffff"), // 18446744073709551615
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	case 8:
    		x = apply(x, 0x7f7f7f7f7f7f7f7f)
    	case 16:
    		x = apply(x, 0x7fff7fff7fff7fff)
    	case 32:
    		x = apply(x, 0x7fffffff7fffffff)
    	case 64: // == maxPagesPerPhysPage
    		x = apply(x, 0x7fffffffffffffff)
    	default:
    		throw("bad m value")
    	}
    	// Now, the top bit of each m-aligned group in x is set
    	// that group was all zero in the original x.
    
    	// From each group of m bits subtract 1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top