Lines Matching defs:nr_buckets
70 unsigned int nr_buckets;
174 unsigned int nr_buckets, max_buckets;
183 for (nr_buckets = 128u; nr_buckets < max_buckets; nr_buckets <<= 1)
185 nr_buckets >>= 1;
203 rh->mask = nr_buckets - 1;
204 rh->nr_buckets = nr_buckets;
209 rh->buckets = vmalloc(array_size(nr_buckets, sizeof(*rh->buckets)));
216 for (i = 0; i < nr_buckets; i++)
246 for (h = 0; h < rh->nr_buckets; h++) {