Home | History | Annotate | Download | only in lib

Lines Matching full:hash

20    NAME      name of the hash table structure.
21 TYPE data type of the hash table entries
37 /* First hash function: simply take the modul but prevent zero. */
42 unsigned long int hash;
48 /* Second hash function as suggested in [Knuth]. */
49 hash = 1 + hval % (htab->size - 2);
53 if (idx <= hash)
54 idx = htab->size + idx - hash;
56 idx -= hash;
207 /* Make the hash value nonzero. */
234 /* Make the hash value nonzero. */
257 /* Make the hash value nonzero. */