Home | History | Annotate | Download | only in make

Lines Matching defs:buckets

80  * The ratio of # entries to # buckets at which we rebuild the table to
124 for (he = t->buckets[h & t->bucketsMask]; he != NULL; he = he->next) {
139 HashEntry **buckets = bmake_malloc(sizeof *buckets * n);
141 buckets[i] = NULL;
143 t->buckets = buckets;
156 HashEntry **buckets = t->buckets;
160 HashEntry *he = buckets[i];
168 free(t->buckets);
170 t->buckets = NULL;
207 const HashEntry *he = t->buckets[b];
224 HashEntry **oldBuckets = t->buckets;
247 t->buckets = newBuckets;
277 he->next = t->buckets[h & t->bucketsMask];
278 t->buckets[h & t->bucketsMask] = he;
297 HashEntry **ref = &t->buckets[he->hash & t->bucketsMask];
315 HashEntry **buckets = t->buckets;
324 he = buckets[hi->nextBucket++];