Home | History | Annotate | Download | only in hash

Lines Matching defs:nelem

281 	int nelem;
283 nelem = 1;
318 if (info->nelem)
319 nelem = info->nelem;
330 if (init_htab(hashp, (size_t)nelem))
342 init_htab(HTAB *hashp, size_t nelem)
353 nelem = (nelem - 1) / hashp->FFACTOR + 1;
355 _DBFIT(nelem, uint32_t);
356 l2 = __log2(MAX((uint32_t)nelem, 2));