Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0xefcdab8967452301 (0.41 sec)

  1. src/math/bits/bits_test.go

    		{0x012345, 0x452301 << 40},
    		{0x01234567, 0x67452301 << 32},
    		{0x0123456789, 0x8967452301 << 24},
    		{0x0123456789ab, 0xab8967452301 << 16},
    		{0x0123456789abcd, 0xcdab8967452301 << 8},
    		{0x0123456789abcdef, 0xefcdab8967452301 << 0},
    	} {
    		testReverseBytes(t, test.x, test.r)
    		testReverseBytes(t, test.r, test.x)
    	}
    }
    
    func testReverseBytes(t *testing.T, x64, want64 uint64) {
    	x16 := uint16(x64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 22 20:11:06 UTC 2020
    - 32.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/hash/HashCodeTest.java

                    (byte) 0x67, (byte) 0x45, (byte) 0x23, (byte) 0x01
                  },
                  0x89abcdef,
                  0x0123456789abcdefL,
                  "efcdab8967452301"),
              new ExpectedHashCode(
                  new byte[] {
                    (byte) 0xef, (byte) 0xcd, (byte) 0xab, (byte) 0x89,
                    (byte) 0x67, (byte) 0x45, (byte) 0x23,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top