Lines Matching refs:round
92 for (int round = 0; round < fCapacity; round++) {
101 index = this->nextIndex(index, round);
146 for (int round = 0; round < fCapacity; round++) {
150 return round;
152 index = this->nextIndex(index, round);
210 for (int round = 0; round < fCapacity; round++) {
221 index = this->nextIndex(index, round);
229 for (int round = 0; round < fCapacity; round++) {
238 index = this->nextIndex(index, round);
274 // Given index at round N, what is the index to check at N+1? round should start at 0.
275 int nextIndex(int index, int round) const {
277 return (index + round + 1) & this->hashMask();