Lines Matching refs:nslot
287 for (i = 0; i < h->nslot; i++) { in avtab_destroy()
300 h->nslot = 0; in avtab_destroy()
316 u32 nslot = 0; in avtab_alloc() local
327 nslot = 1 << shift; in avtab_alloc()
328 if (nslot > MAX_AVTAB_HASH_BUCKETS) in avtab_alloc()
329 nslot = MAX_AVTAB_HASH_BUCKETS; in avtab_alloc()
330 mask = nslot - 1; in avtab_alloc()
332 h->htable = flex_array_alloc(sizeof(struct avtab_node *), nslot, in avtab_alloc()
339 h->nslot = nslot; in avtab_alloc()
342 h->nslot, nrules); in avtab_alloc()
355 for (i = 0; i < h->nslot; i++) { in avtab_hash_eval()
373 tag, h->nel, slots_used, h->nslot, max_chain_len, in avtab_hash_eval()
647 for (i = 0; i < a->nslot; i++) { in avtab_write()