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

  /src/lib/libc/db/hash/
hash.h 80 int32_t high_mask; /* Mask to modulo into entire table */ member in struct:hashhdr
291 #define HIGH_MASK hdr.high_mask
hash.c 225 "HIGH MASK ", hashp->HIGH_MASK,
369 hashp->HIGH_MASK = (nbuckets << 1) - 1;
869 if (new_bucket > (uint32_t)hashp->HIGH_MASK) {
871 hashp->LOW_MASK = hashp->HIGH_MASK;
872 hashp->HIGH_MASK = new_bucket | hashp->LOW_MASK;
902 bucket = n & hashp->HIGH_MASK;
964 P_32_COPY(srcp->high_mask, destp->high_mask);
995 M_32_SWAP(hdrp->high_mask);

Completed in 26 milliseconds