Home
last modified time | relevance | path

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

/dragonfly/lib/libc/db/hash/
H A Dhash_page.c453 (hashp->NKEYS / (hashp->MAX_BUCKET + 1) > hashp->FFACTOR)) in __addel()
474 if (hashp->FFACTOR == DEF_FFACTOR) { in __add_ovflpage()
475 hashp->FFACTOR = sp[0] >> 1; in __add_ovflpage()
476 if (hashp->FFACTOR < MIN_FFACTOR) in __add_ovflpage()
477 hashp->FFACTOR = MIN_FFACTOR; in __add_ovflpage()
H A Dhash.c213 "FILL FACTOR ", hashp->FFACTOR, in __hash_open()
283 hashp->FFACTOR = DEF_FFACTOR; in init_hash()
309 hashp->FFACTOR = info->ffactor; in init_hash()
345 nelem = (nelem - 1) / hashp->FFACTOR + 1; in init_htab()
H A Dhash.h281 #define FFACTOR hdr.ffactor macro