| 36 | namespace detail { |
| 37 | |
| 38 | inline uint64_t LoadWord(const uint8_t* bytes) { |
| 39 | return bit_util::ToLittleEndian(util::SafeLoadAs<uint64_t>(bytes)); |
| 40 | } |
| 41 | |
| 42 | inline uint64_t ShiftWord(uint64_t current, uint64_t next, int64_t shift) { |
| 43 | if (shift == 0) { |
no test coverage detected