Home
last modified time | relevance | path

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

/freebsd/lib/libc/db/hash/
H A Dhash_page.c452 (hashp->NKEYS / (hashp->MAX_BUCKET + 1) > hashp->FFACTOR)) in __addel()
473 if (hashp->FFACTOR == DEF_FFACTOR) { in __add_ovflpage()
474 hashp->FFACTOR = sp[0] >> 1; in __add_ovflpage()
475 if (hashp->FFACTOR < MIN_FFACTOR) in __add_ovflpage()
476 hashp->FFACTOR = MIN_FFACTOR; in __add_ovflpage()
H A Dhash.c210 "FILL FACTOR ", hashp->FFACTOR, in __hash_open()
280 hashp->FFACTOR = DEF_FFACTOR; in init_hash()
306 hashp->FFACTOR = info->ffactor; in init_hash()
342 nelem = (nelem - 1) / hashp->FFACTOR + 1; in init_htab()
H A Dhash.h279 #define FFACTOR hdr.ffactor macro