Lines Matching refs:hash
43 unsigned long hash; member
137 unsigned long hash; in hash_lookup() local
149 hash = 0; in hash_lookup()
153 hash += c + (c << 17); in hash_lookup()
154 hash ^= hash >> 2; in hash_lookup()
156 hash += len + (len << 17); in hash_lookup()
157 hash ^= hash >> 2; in hash_lookup()
160 *phash = hash; in hash_lookup()
162 hindex = hash % table->size; in hash_lookup()
175 if (p->hash == hash) in hash_lookup()
210 unsigned long hash; in hash_insert() local
212 p = hash_lookup (table, key, strlen (key), &list, &hash); in hash_insert()
222 p->hash = hash; in hash_insert()
240 unsigned long hash; in hash_jam() local
242 p = hash_lookup (table, key, strlen (key), &list, &hash); in hash_jam()
259 p->hash = hash; in hash_jam()