Home
last modified time | relevance | path

Searched refs:htable_hash (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dhtable.c142 #define htable_hash(s, size) (hash_fnvz(s) % (size)) macro
146 static size_t htable_hash(const char *s, size_t size) in htable_hash() function
170 HTABLE_INFO **_h = table->data + htable_hash(element->key, table->size);\
251 for (ht = table->data[htable_hash(key, table->size)]; ht; ht = ht->next) in htable_find()
266 for (ht = table->data[htable_hash(key, table->size)]; ht; ht = ht->next) in htable_locate()
278 HTABLE_INFO **h = table->data + htable_hash(key, table->size); in htable_delete()