Lines Matching defs:buckets
118 int cache_lines, buckets, i, usedcells = 0, idx;
144 /* now allocate buckets */
145 buckets = (gc->gc_numcells / 223);
146 if ((buckets * 223) < gc->gc_numcells)
147 buckets++;
153 if (buckets < 1)
156 buckets = uimin(buckets, gc->gc_nbuckets);
157 gc->gc_numbuckets = buckets;
159 DPRINTF("%s: using %d buckets\n", __func__, buckets);
160 for (i = 0; i < buckets; i++) {
215 /* empty all the buckets */
320 /* if we end up here all buckets must be in use */