Lines Matching defs:size
37 u32 size;
116 return val & (netlbl_domhsh_rcu_deref(netlbl_domhsh)->size - 1);
354 * @size: the number of bits to use for the hash buckets
362 int __init netlbl_domhsh_init(u32 size)
367 if (size == 0)
373 hsh_tbl->size = 1 << size;
374 hsh_tbl->tbl = kcalloc(hsh_tbl->size,
381 for (iter = 0; iter < hsh_tbl->size; iter++)
952 iter_bkt < rcu_dereference(netlbl_domhsh)->size;