Home
last modified time | relevance | path

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

/freebsd/contrib/bmake/
H A Dhash.c125 for (he = t->buckets[h & t->bucketsMask]; he != NULL; he = he->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->hash & t->bucketsMask]; in HashTable_DeleteEntry()
H A Dhash.h94 unsigned int bucketsMask; /* Used to select the bucket for a hash. */ member