Lines Matching refs:bucket
751 int32_t bucket; local
772 for (bucket = hashp->cbucket;
773 bucket <= hashp->MAX_BUCKET;
774 bucket++, hashp->cndx = 1) {
775 bufp = __get_buf(hashp, bucket, NULL, 0);
783 hashp->cbucket = bucket;
908 int32_t n, bucket; local
911 bucket = n & hashp->HIGH_MASK;
912 if (bucket > hashp->MAX_BUCKET)
913 bucket = bucket & hashp->LOW_MASK;
914 return (bucket);