Lines Matching refs:nslot
269 for (i = 0; i < h->nslot; i++) { in avtab_destroy()
279 h->nslot = 0; in avtab_destroy()
295 u32 nslot = 0; in avtab_alloc() local
306 nslot = 1 << shift; in avtab_alloc()
307 if (nslot > MAX_AVTAB_HASH_BUCKETS) in avtab_alloc()
308 nslot = MAX_AVTAB_HASH_BUCKETS; in avtab_alloc()
309 mask = nslot - 1; in avtab_alloc()
311 h->htable = flex_array_alloc(sizeof(struct avtab_node *), nslot, in avtab_alloc()
318 h->nslot = nslot; in avtab_alloc()
321 h->nslot, nrules); in avtab_alloc()
334 for (i = 0; i < h->nslot; i++) { in avtab_hash_eval()
352 tag, h->nel, slots_used, h->nslot, max_chain_len, in avtab_hash_eval()
575 for (i = 0; i < a->nslot; i++) { in avtab_write()