Lines Matching refs:Entry
130 if (bucket_type::getEmptyBucket() == bucket.Entry) { in lookUpBucketFor()
140 if (bucket_type::getTombstone() == bucket.Entry) { in lookUpBucketFor()
145 if (bucket.Entry->compare(pKey)) { in lookUpBucketFor()
171 if (bucket_type::getEmptyBucket() == bucket.Entry) in findKey()
174 if (bucket_type::getTombstone() == bucket.Entry) { in findKey()
178 if (bucket.Entry->compare(pKey)) in findKey()
213 if (IB->Entry != bucket_type::getEmptyBucket() && in doRehash()
214 IB->Entry != bucket_type::getTombstone()) { in doRehash()
218 if (bucket_type::getEmptyBucket() == new_table[new_bucket].Entry) { in doRehash()
219 new_table[new_bucket].Entry = IB->Entry; in doRehash()
230 } while (new_table[new_bucket].Entry != bucket_type::getEmptyBucket()); in doRehash()
233 new_table[new_bucket].Entry = IB->Entry; in doRehash()