Lines Matching refs:size
33 u32 size = hashtab_compute_size(nel_hint); in hashtab_init() local
37 h->size = 0; in hashtab_init()
40 if (size) { in hashtab_init()
41 h->htable = kcalloc(size, sizeof(*h->htable), GFP_KERNEL); in hashtab_init()
44 h->size = size; in hashtab_init()
71 for (i = 0; i < h->size; i++) { in hashtab_destroy()
93 for (i = 0; i < h->size; i++) { in hashtab_map()
113 for (i = 0; i < h->size; i++) { in hashtab_stat()
143 new->htable = kcalloc(orig->size, sizeof(*new->htable), GFP_KERNEL); in hashtab_duplicate()
147 new->size = orig->size; in hashtab_duplicate()
149 for (i = 0; i < orig->size; i++) { in hashtab_duplicate()
174 for (i = 0; i < new->size; i++) { in hashtab_duplicate()