29 size_t const suffixes = next_power_of_four(partitions);
30 size_t const suffixes_per_part = suffixes / partitions;
46 constexpr size_t hash_partition(uint64_t
const hash)
const
48 return (hash & mask) >> shift_value;
51 static constexpr size_t next_power_of_four(
size_t number)
53 if (number == 0ULL || number == 1ULL)
58 int const shift_amount = (highest_set_bit_pos + (highest_set_bit_pos & 1)) - 2;
60 return 0b0100ULL << shift_amount;