Home
last modified time | relevance | path

Searched refs:max_bucket (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash.c256 "MAX BUCKET ", hashp->hdr.max_bucket,
396 hashp->hdr.max_bucket = hashp->hdr.low_mask = nbuckets - 1;
514 "keys %ld maxp %d\n", hashp->hdr.nkeys, hashp->hdr.max_bucket);
923 if (cursorp->bucket > hashp->hdr.max_bucket)
985 new_bucket = ++hashp->hdr.max_bucket;
986 old_bucket = (hashp->hdr.max_bucket & hashp->hdr.low_mask);
997 spare_ndx = __log2(hashp->hdr.max_bucket + 1);
1026 if (bucket > hashp->hdr.max_bucket)
1048 P_32_COPY(srcp->max_bucket, destp->max_bucket);
1077 M_32_SWAP(hdrp->max_bucket);
H A Dhash.h86 int32_t max_bucket; /* ID of Maximum bucket in use */ member
H A Dhash_page.c608 (hashp->hdr.nkeys / hashp->hdr.max_bucket) >
/illumos-gate/usr/src/cmd/sendmail/db/hash/
H A Dhash.c231 hcp->hdr->max_bucket = hcp->hdr->high_mask = nbuckets - 1;
636 if (hcp->bucket > hcp->hdr->max_bucket) {
817 if (__db_log2(hcp->hdr->max_bucket + 2) > hcp->hdr->ovfl_point) {
823 if (hcp->hdr->max_bucket + 1 >= 8 &&
834 hcp->hdr->max_bucket, hcp->hdr->ovfl_point,
843 new_bucket = ++hcp->hdr->max_bucket;
844 old_bucket = (hcp->hdr->max_bucket & hcp->hdr->low_mask);
850 spare_ndx = __db_log2(hcp->hdr->max_bucket + 1);
887 if (bucket > hcp->hdr->max_bucket)
H A Dhash_rec.c627 hcp->hdr->max_bucket = argp->bucket + 1;
628 pow = __db_log2(hcp->hdr->max_bucket + 1);
634 if (hcp->hdr->max_bucket > hcp->hdr->high_mask) {
637 hcp->hdr->max_bucket | hcp->hdr->low_mask;
642 hcp->hdr->max_bucket = argp->bucket;
645 pow = 1 << __db_log2(hcp->hdr->max_bucket + 1);
H A Dhash_page.c283 hcp->bucket = hcp->hdr->max_bucket;
/illumos-gate/usr/src/cmd/sendmail/db/include/
H A Ddb_page.h85 u_int32_t max_bucket; /* 32-35: ID of Maximum bucket in use */ member
/illumos-gate/usr/src/cmd/sendmail/db/db/
H A Ddb_pr.c296 fprintf(fp, "\tmax_bucket %lu\n", (u_long)hcp->hdr->max_bucket);