Lines Matching refs:size
34 u32 size = hashtab_compute_size(nel_hint); in hashtab_init() local
38 h->size = 0; in hashtab_init()
41 if (size) { in hashtab_init()
42 h->htable = kcalloc(size, sizeof(*h->htable), GFP_KERNEL); in hashtab_init()
45 h->size = size; in hashtab_init()
72 for (i = 0; i < h->size; i++) { in hashtab_destroy()
94 for (i = 0; i < h->size; i++) { in hashtab_map()
114 for (i = 0; i < h->size; i++) { in hashtab_stat()
144 new->htable = kcalloc(orig->size, sizeof(*new->htable), GFP_KERNEL); in hashtab_duplicate()
148 new->size = orig->size; in hashtab_duplicate()
150 for (i = 0; i < orig->size; i++) { in hashtab_duplicate()
175 for (i = 0; i < new->size; i++) { in hashtab_duplicate()