Home
last modified time | relevance | path

Searched refs:REVERSE_BITS_TABLE (Results 1 – 1 of 1) sorted by relevance

/dports/devel/py-hypothesis/hypothesis-6.28.0/src/hypothesis/internal/conjecture/
H A Dfloats.py138 REVERSE_BITS_TABLE = bytearray(map(reverse_byte, range(256))) variable
154 (REVERSE_BITS_TABLE[(v >> 0) & 0xFF] << 56)
155 | (REVERSE_BITS_TABLE[(v >> 8) & 0xFF] << 48)
156 | (REVERSE_BITS_TABLE[(v >> 16) & 0xFF] << 40)
157 | (REVERSE_BITS_TABLE[(v >> 24) & 0xFF] << 32)
158 | (REVERSE_BITS_TABLE[(v >> 32) & 0xFF] << 24)
159 | (REVERSE_BITS_TABLE[(v >> 40) & 0xFF] << 16)
160 | (REVERSE_BITS_TABLE[(v >> 48) & 0xFF] << 8)
161 | (REVERSE_BITS_TABLE[(v >> 56) & 0xFF] << 0)