Home
last modified time | relevance | path

Searched refs:FFACTOR (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/lib/libc/db/hash/
H A Dhash_page.c468 (hashp->NKEYS / (hashp->MAX_BUCKET + 1) > hashp->FFACTOR)) in __addel()
491 if (hashp->FFACTOR == DEF_FFACTOR) { in __add_ovflpage()
492 hashp->FFACTOR = (uint32_t)sp[0] >> 1; in __add_ovflpage()
493 if (hashp->FFACTOR < MIN_FFACTOR) in __add_ovflpage()
494 hashp->FFACTOR = MIN_FFACTOR; in __add_ovflpage()
H A Dhash.c221 "FILL FACTOR ", hashp->FFACTOR, in __hash_open()
291 hashp->FFACTOR = DEF_FFACTOR; in init_hash()
315 hashp->FFACTOR = info->ffactor; in init_hash()
353 nelem = (nelem - 1) / hashp->FFACTOR + 1; in init_htab()
H A Dhash.h290 #define FFACTOR hdr.ffactor macro