Extract next ISAAC64_SZ_LOG bits (starting at bit ISAAC64_SZ_LOG+2). */
| 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) |
| 46 | { |
| 47 | return (y >> (ISAAC64_SZ_LOG+3)) & (ISAAC64_SZ-1); |
| 48 | } |
| 49 | |
| 50 | staticfn void isaac64_update(isaac64_ctx *_ctx){ |
| 51 | uint64_t *m; |