Lines Matching refs:hash
35 NAME name of the hash table structure.
36 TYPE data type of the hash table entries
49 /* First hash function: simply take the modul but prevent zero. Small values
55 HASHTYPE hash;
61 /* Second hash function as suggested in [Knuth]. */
62 hash = 1 + hval % (htab->size - 2);
66 if (idx <= hash)
67 idx = htab->size + idx - hash;
69 idx -= hash;
214 /* Make the hash value nonzero. */
238 /* Make the hash value nonzero. */
258 /* Make the hash value nonzero. */