Lines Matching refs:bucket
128 bucket_type& bucket = m_Buckets[index]; in lookUpBucketFor() local
130 if (bucket_type::getEmptyBucket() == bucket.Entry) { in lookUpBucketFor()
136 bucket.FullHashValue = full_hash; in lookUpBucketFor()
140 if (bucket_type::getTombstone() == bucket.Entry) { in lookUpBucketFor()
144 } else if (bucket.FullHashValue == full_hash) { in lookUpBucketFor()
145 if (bucket.Entry->compare(pKey)) { in lookUpBucketFor()
169 bucket_type& bucket = m_Buckets[index]; in findKey() local
171 if (bucket_type::getEmptyBucket() == bucket.Entry) in findKey()
174 if (bucket_type::getTombstone() == bucket.Entry) { in findKey()
176 } else if (full_hash == bucket.FullHashValue) { in findKey()
178 if (bucket.Entry->compare(pKey)) in findKey()