Home | History | Annotate | Download | only in core

Lines Matching refs:round

38         for (int round = 0; round < fCapacity; round++) {
46 index = this->nextIndex(index, round);
78 for (int round = 0; round < fCapacity; round++) {
81 return round;
83 index = this->nextIndex(index, round);
161 for (int round = 0; round < fCapacity; round++) {
171 index = this->nextIndex(index, round);
179 for (int round = 0; round < fCapacity; round++) {
187 index = this->nextIndex(index, round);
229 // Given index at round N, what is the index to check at N+1? round should start at 0.
230 int nextIndex(int index, int round) const {
232 return (index + round + 1) & this->hashMask();