Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/bmake/
H A Dhash.c125 for (e = t->buckets[h & t->bucketsMask]; e != NULL; e = e->next) { in HashTable_Find()
151 t->bucketsMask = n - 1; in HashTable_Init()
238 t->bucketsMask = newMask; in HashTable_Enlarge()
270 he->next = t->buckets[h & t->bucketsMask]; in HashTable_CreateEntry()
271 t->buckets[h & t->bucketsMask] = he; in HashTable_CreateEntry()
290 HashEntry **ref = &t->buckets[he->key_hash & t->bucketsMask]; in HashTable_DeleteEntry()
H A Dhash.h95 unsigned int bucketsMask; /* Used to select the bucket for a hash. */ member