Lines Matching refs:round
92 for (int round = 0; round < fCapacity; round++) { in find() local
101 index = this->nextIndex(index, round); in find()
146 for (int round = 0; round < fCapacity; round++) { in countCollisions() local
150 return round; in countCollisions()
152 index = this->nextIndex(index, round); in countCollisions()
210 for (int round = 0; round < fCapacity; round++) { in innerAdd() local
221 index = this->nextIndex(index, round); in innerAdd()
229 for (int round = 0; round < fCapacity; round++) { in innerRemove() local
238 index = this->nextIndex(index, round); in innerRemove()
284 int nextIndex(int index, int round) const { in nextIndex() argument
286 return (index + round + 1) & this->hashMask(); in nextIndex()