Symbol: hash_bits
drivers/md/dm-cache-policy-smq.c
587
unsigned long long hash_bits;
drivers/md/dm-cache-policy-smq.c
601
ht->hash_bits = __ffs(nr_buckets);
drivers/md/dm-cache-policy-smq.c
636
unsigned int h = hash_64(from_oblock(e->oblock), ht->hash_bits);
drivers/md/dm-cache-policy-smq.c
672
unsigned int h = hash_64(from_oblock(oblock), ht->hash_bits);
drivers/md/dm-cache-policy-smq.c
689
unsigned int h = hash_64(from_oblock(e->oblock), ht->hash_bits);
drivers/net/ethernet/cavium/thunder/nic.h
143
u8 hash_bits;
drivers/net/ethernet/cavium/thunder/nic.h
493
u8 hash_bits;
drivers/net/ethernet/cavium/thunder/nic_main.c
594
cpi_cfg |= (cfg->hash_bits << 20);
drivers/net/ethernet/cavium/thunder/nicvf_main.c
341
mbx.rss_cfg.hash_bits = rss->hash_bits;
drivers/net/ethernet/cavium/thunder/nicvf_main.c
379
rss->hash_bits = 0;
drivers/net/ethernet/cavium/thunder/nicvf_main.c
391
rss->hash_bits = ilog2(rounddown_pow_of_two(rss->rss_size));
include/linux/io_uring_types.h
94
unsigned hash_bits;
io_uring/fdinfo.c
233
for (i = 0; i < (1U << ctx->cancel_table.hash_bits); i++) {
io_uring/io_uring.c
209
table->hash_bits = bits;
io_uring/io_uring.c
228
int hash_bits;
io_uring/io_uring.c
243
hash_bits = ilog2(p->cq_entries) - 5;
io_uring/io_uring.c
244
hash_bits = clamp(hash_bits, 1, 8);
io_uring/io_uring.c
245
if (io_alloc_hash_table(&ctx->cancel_table, hash_bits))
io_uring/poll.c
124
u32 index = hash_long(req->cqe.user_data, table->hash_bits);
io_uring/poll.c
736
unsigned nr_buckets = 1U << ctx->cancel_table.hash_bits;
io_uring/poll.c
762
u32 index = hash_long(cd->data, ctx->cancel_table.hash_bits);
io_uring/poll.c
782
unsigned nr_buckets = 1U << ctx->cancel_table.hash_bits;
lib/zlib_deflate/deflate.c
253
s->hash_bits = memLevel + 7;
lib/zlib_deflate/deflate.c
254
s->hash_size = 1 << s->hash_bits;
lib/zlib_deflate/deflate.c
256
s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
lib/zlib_deflate/deflate.c
597
Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
lib/zlib_deflate/defutil.h
116
uInt hash_bits; /* log2(hash_size) */
net/ipv4/fib_semantics.c
2239
unsigned int hash_bits = 4;
net/ipv4/fib_semantics.c
2241
net->ipv4.fib_info_hash = fib_info_hash_alloc(hash_bits);
net/ipv4/fib_semantics.c
2245
net->ipv4.fib_info_hash_bits = hash_bits;
net/ipv4/fib_semantics.c
356
unsigned int hash_bits = net->ipv4.fib_info_hash_bits;
net/ipv4/fib_semantics.c
359
slot = hash_32(net_hash_mix(net) ^ (__force u32)val, hash_bits);
net/ipv4/fib_semantics.c
361
return &net->ipv4.fib_info_hash[(1 << hash_bits) + slot];
net/ipv4/fib_semantics.c
364
static struct hlist_head *fib_info_hash_alloc(unsigned int hash_bits)
net/ipv4/fib_semantics.c
367
return kvzalloc_objs(struct hlist_head, (1 << hash_bits) * 2);
tools/lib/bpf/hashmap.c
118
h = hash_bits(map->hash_fn(cur->key, map->ctx), new_cap_bits);
tools/lib/bpf/hashmap.c
167
h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits);
tools/lib/bpf/hashmap.c
191
h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits);
tools/lib/bpf/hashmap.c
211
h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits);
tools/lib/bpf/hashmap.c
226
h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits);
tools/lib/bpf/hashmap.h
194
? (map)->buckets[hash_bits((map)->hash_fn((_key), (map)->ctx), (map)->cap_bits)] \
tools/lib/bpf/hashmap.h
202
? (map)->buckets[hash_bits((map)->hash_fn((_key), (map)->ctx), (map)->cap_bits)] \
tools/perf/util/hashmap.c
118
h = hash_bits(map->hash_fn(cur->key, map->ctx), new_cap_bits);
tools/perf/util/hashmap.c
167
h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits);
tools/perf/util/hashmap.c
191
h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits);
tools/perf/util/hashmap.c
211
h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits);
tools/perf/util/hashmap.c
226
h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits);
tools/perf/util/hashmap.h
194
? (map)->buckets[hash_bits((map)->hash_fn((_key), (map)->ctx), (map)->cap_bits)] \
tools/perf/util/hashmap.h
202
? (map)->buckets[hash_bits((map)->hash_fn((_key), (map)->ctx), (map)->cap_bits)] \
tools/perf/util/sharded_mutex.h
26
return &sm->mutexes[hash_bits(hash, sm->cap_bits)];