Lines Matching defs:pc_bnum
469 uint_t pc_bnum; /* number of buckets */
1307 p->pc_bnum = 8; /* Normal case will only have 2 elts. */
1308 p->pc_buckets = uu_zalloc(sizeof (*p->pc_buckets) * p->pc_bnum);
1324 for (i = 0; i < pcp->pc_bnum; ++i) {
1363 for (ep = pcp->pc_buckets[h & (pcp->pc_bnum - 1)];
1381 for (i = 0; i < pcp->pc_bnum; ++i) {
1400 new_bnum = pcp->pc_bnum * 2;
1401 if (new_bnum < pcp->pc_bnum)
1409 for (i = 0; i < pcp->pc_bnum; ++i) {
1420 pcp->pc_bnum = new_bnum;
1435 /* Grow if pc_enum / pc_bnum > 3/4. */
1436 if (pcp->pc_enum * 4 > 3 * pcp->pc_bnum)
1442 i = pc_hash(auth) & (pcp->pc_bnum - 1);