| 319 | |
| 320 | template <Operation op, typename Table> |
| 321 | void ProbeState::loadNextHit(Table& table, int32_t firstKey) { |
| 322 | const int32_t hit = bits::getAndClearLastSetBit(hits_); |
| 323 | |
| 324 | if (op == Operation::kErase) { |
| 325 | indexInTags_ = hit; |
| 326 | } |
| 327 | group_ = table.row(bucketOffset_, hit); |
| 328 | __builtin_prefetch(group_ + firstKey); |
| 329 | table.incrementRowLoads(); |
| 330 | } |
| 331 | |
| 332 | template <typename Table> |
| 333 | void ProbeState::eraseHit(Table& table, int64_t& numTombstones) { |
nothing calls this directly
no test coverage detected