Lines Matching refs:buckets
578 unsigned int *buckets;
593 ht->buckets = vmalloc(array_size(nr_buckets, sizeof(*ht->buckets)));
594 if (!ht->buckets)
598 ht->buckets[i] = INDEXER_NULL;
605 vfree(ht->buckets);
610 return to_entry(ht->es, ht->buckets[bucket]);
620 e->hash_next = ht->buckets[bucket];
621 ht->buckets[bucket] = to_index(ht->es, e);
653 ht->buckets[h] = e->hash_next;