Extract ISAAC64_SZ_LOG bits (starting at bit 3). */
| 37 | |
| 38 | /* Extract ISAAC64_SZ_LOG bits (starting at bit 3). */ |
| 39 | static inline uint32_t lower_bits(uint64_t x) |
| 40 | { |
| 41 | return (x & ((ISAAC64_SZ-1) << 3)) >>3; |
| 42 | } |
| 43 | |
| 44 | /* Extract next ISAAC64_SZ_LOG bits (starting at bit ISAAC64_SZ_LOG+2). */ |
| 45 | static inline uint32_t upper_bits(uint64_t y) |