Home
last modified time | relevance | path

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

/freebsd/contrib/bmake/
H A Dhash.c124 for (he = t->buckets[h & t->bucketsMask]; he != NULL; he = he->next) { in HashTable_Find()
146 t->bucketsMask = n - 1; in HashTable_Init()
246 t->bucketsMask = newMask; in HashTable_Enlarge()
277 he->next = t->buckets[h & t->bucketsMask]; in HashTable_CreateEntry()
278 t->buckets[h & t->bucketsMask] = he; in HashTable_CreateEntry()
297 HashEntry **ref = &t->buckets[he->hash & t->bucketsMask]; in HashTable_DeleteEntry()
H A Dhash.h94 unsigned bucketsMask; /* Used to select the bucket for a hash. */ member