Lines Matching defs:bucket
165 * maximum bucket number, so the number of buckets is
216 "BUCKET SIZE ", hashp->BSIZE,
217 "BUCKET SHIFT ", hashp->BSHIFT,
222 "MAX BUCKET ", hashp->MAX_BUCKET,
296 /* Fix bucket size to be optimal for file system */
596 /* Pin the bucket chain */
725 uint32_t bucket;
747 for (bucket = hashp->cbucket;
748 bucket <= (uint32_t)hashp->MAX_BUCKET;
749 bucket++) {
750 bufp = __get_buf(hashp, bucket, NULL, 0);
758 hashp->cbucket = bucket;
861 * split bucket to the next bucket.
874 /* Relocate records to the new bucket */
899 int n, bucket;
902 bucket = n & hashp->HIGH_MASK;
903 if (bucket > hashp->MAX_BUCKET)
904 bucket = bucket & hashp->LOW_MASK;
905 return (bucket);