Lines Matching refs:hash
26 * \brief Implementation of a generic, opaque hash table data type.
41 hash_func_t hash;
57 hash_table_ctor(unsigned num_buckets, hash_func_t hash,
71 ht->hash = hash;
114 const unsigned hash_value = (*ht->hash)(key);
140 const unsigned hash_value = (*ht->hash)(key);
155 const unsigned hash_value = (*ht->hash)(key);
212 unsigned hash = 5381;
216 hash = (hash * 33) + *str;
220 return hash;