Lines Matching refs:nslot
314 for (i = 0; i < h->nslot; i++) { in avtab_destroy()
328 h->nslot = 0; in avtab_destroy()
343 for (i = 0; i < h->nslot; i++) { in avtab_map()
367 uint32_t nslot = 0; in avtab_alloc() local
378 nslot = 1 << shift; in avtab_alloc()
379 if (nslot > MAX_AVTAB_HASH_BUCKETS) in avtab_alloc()
380 nslot = MAX_AVTAB_HASH_BUCKETS; in avtab_alloc()
381 mask = nslot - 1; in avtab_alloc()
383 h->htable = calloc(nslot, sizeof(avtab_ptr_t)); in avtab_alloc()
388 h->nslot = nslot; in avtab_alloc()
400 for (i = 0; i < h->nslot; i++) { in avtab_hash_eval()
417 tag, h->nel, slots_used, h->nslot, max_chain_len); in avtab_hash_eval()