Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for 0x__12345 (0.06 sec)

  1. src/math/bits/bits_test.go

    	}
    	Output = int(s)
    }
    
    func TestReverseBytes(t *testing.T) {
    	for _, test := range []struct {
    		x, r uint64
    	}{
    		{0, 0},
    		{0x01, 0x01 << 56},
    		{0x0123, 0x2301 << 48},
    		{0x012345, 0x452301 << 40},
    		{0x01234567, 0x67452301 << 32},
    		{0x0123456789, 0x8967452301 << 24},
    		{0x0123456789ab, 0xab8967452301 << 16},
    		{0x0123456789abcd, 0xcdab8967452301 << 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 22 20:11:06 UTC 2020
    - 32.5K bytes
    - Viewed (0)
Back to top