HomeSort by: relevance | last modified time | path
    Searched refs:FFACTOR (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libc/db/hash/
hash.h 83 int32_t ffactor; /* Fill factor */ member in struct:hashhdr
290 #define FFACTOR hdr.ffactor
hash_page.c 469 (hashp->NKEYS / (hashp->MAX_BUCKET + 1) > hashp->FFACTOR))
492 if (hashp->FFACTOR == DEF_FFACTOR) {
493 hashp->FFACTOR = (uint32_t)sp[0] >> 1;
494 if (hashp->FFACTOR < MIN_FFACTOR)
495 hashp->FFACTOR = MIN_FFACTOR;
hash.c 222 "FILL FACTOR ", hashp->FFACTOR,
292 hashp->FFACTOR = DEF_FFACTOR;
315 if (info->ffactor)
316 hashp->FFACTOR = info->ffactor;
354 nelem = (nelem - 1) / hashp->FFACTOR + 1;
966 P_32_COPY(srcp->ffactor, destp->ffactor);
997 M_32_SWAP(hdrp->ffactor);

Completed in 50 milliseconds