| 106 | uint32_t group_id); |
| 107 | |
| 108 | static uint32_t block_id_from_hash(uint32_t hash, int log_blocks) { |
| 109 | return hash >> (bits_hash_ - log_blocks); |
| 110 | } |
| 111 | |
| 112 | static uint32_t global_slot_id(uint32_t block_id, uint32_t local_slot_id) { |
| 113 | return block_id * kSlotsPerBlock + local_slot_id; |
no outgoing calls
no test coverage detected