Lines Matching refs:hash
13 #include <isc/hash.h>
123 isc_uint32_t hash;
128 hash = isc_hash_function(key, keysize, ISC_TRUE, NULL);
129 node = ht->table[hash & ht->mask];
144 node->next = ht->table[hash & ht->mask];
148 ht->table[hash & ht->mask] = node;
157 isc_uint32_t hash;
163 hash = isc_hash_function(key, keysize, ISC_TRUE, NULL);
164 node = ht->table[hash & ht->mask];
180 isc_uint32_t hash;
186 hash = isc_hash_function(key, keysize, ISC_TRUE, NULL);
187 node = ht->table[hash & ht->mask];
192 ht->table[hash & ht->mask] = node->next;
283 isc_uint32_t hash;
301 hash = isc_hash_function(to_delete->key, to_delete->keysize, ISC_TRUE,
303 node = ht->table[hash & ht->mask];
311 ht->table[hash & ht->mask] = node->next;