Home | History | Annotate | Download | only in src

Lines Matching full:hash

51   // Dummy constructor.  This constructor doesn't set up the hash
55 // initial_capacity is the size of the initial hash map;
63 // HashMap entries are (key, value, hash) triplets.
69 uint32_t hash; // the full hash value for key
75 // corresponding key, key hash, and NULL value.
77 Entry* Lookup(void* key, uint32_t hash, bool insert);
80 void Remove(void* key, uint32_t hash);
82 // Empties the hash map (occupancy() == 0).
112 Entry* Probe(void* key, uint32_t hash);