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 468 (hashp->NKEYS / (hashp->MAX_BUCKET + 1) > hashp->FFACTOR))
491 if (hashp->FFACTOR == DEF_FFACTOR) {
492 hashp->FFACTOR = (uint32_t)sp[0] >> 1;
493 if (hashp->FFACTOR < MIN_FFACTOR)
494 hashp->FFACTOR = MIN_FFACTOR;
hash.c 221 "FILL FACTOR ", hashp->FFACTOR,
291 hashp->FFACTOR = DEF_FFACTOR;
314 if (info->ffactor)
315 hashp->FFACTOR = info->ffactor;
353 nelem = (nelem - 1) / hashp->FFACTOR + 1;
966 P_32_COPY(srcp->ffactor, destp->ffactor);
997 M_32_SWAP(hdrp->ffactor);

Completed in 13 milliseconds