7constexpr inline uint64_t rotate64(
const uint64_t value,
const uint64_t rotation)
9 return rotation != 0U ? (value >> rotation) + (value << (64 - rotation)) : value;
12constexpr inline uint32_t rotate32(
const uint32_t value,
const uint32_t rotation)
14 return rotation != 0U ? (value >> rotation) + (value << (32 - rotation)) : value;
Definition: field2_declarations.hpp:6