Home | History | Annotate | Download | only in base

Lines Matching refs:hashfn_

157         hashfn_(),
171 hashfn_(other.hashfn_),
191 hashfn_(std::move(other.hashfn_)),
331 const size_t next_hash = hashfn_(next_element);
368 return FindWithHash(key, hashfn_(key));
373 return FindWithHash(key, hashfn_(key));
388 InsertWithHash(element, hashfn_(element));
392 DCHECK_EQ(hash, hashfn_(element));
410 swap(hashfn_, other.hashfn_);
450 size_t ideal_location = IndexForHash(hashfn_(element));
475 size_t first_slot = FirstAvailableSlot(IndexForHash(hashfn_(temp)));
557 DCHECK_EQ(hashfn_(element), hash);
621 data_[FirstAvailableSlot(IndexForHash(hashfn_(element)))] = std::move(element);
665 HashFn hashfn_; // Hashing function.