Lines Matching refs:hashfn_
205 hashfn_(), in HashSet()
219 hashfn_(other.hashfn_), in HashSet()
239 hashfn_(std::move(other.hashfn_)), in HashSet()
381 const size_t next_hash = hashfn_(next_element); in erase()
418 return FindWithHash(key, hashfn_(key)); in find()
423 return FindWithHash(key, hashfn_(key)); in find()
448 return InsertWithHash(element, hashfn_(element)); in insert()
451 return InsertWithHash(std::move(element), hashfn_(element)); in insert()
456 DCHECK_EQ(hash, hashfn_(element)); in InsertWithHash()
471 swap(hashfn_, other.hashfn_); in swap()
511 size_t ideal_location = IndexForHash(hashfn_(element)); in TotalProbeDistance()
536 size_t first_slot = FirstAvailableSlot(IndexForHash(hashfn_(temp))); in Verify()
618 DCHECK_EQ(hashfn_(element), hash); in FindIndex()
682 data_[FirstAvailableSlot(IndexForHash(hashfn_(element)))] = std::move(element); in Resize()
735 HashFn hashfn_; // Hashing function. variable