Home
last modified time | relevance | path

Searched refs:ISBIG (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash_page.c545 if (ISBIG(PAIRSIZE(key, val), hashp) && BIGPAIRFITS(pagep))
556 if ((ISBIG(PAIRSIZE(key, val), hashp) &&
558 (!ISBIG(PAIRSIZE(key, val), hashp) &&
565 if ((ISBIG(PAIRSIZE(key, val), hashp) &&
567 (!ISBIG(PAIRSIZE(key, val), hashp) &&
576 if (ISBIG(PAIRSIZE(key, val), hashp)) {
596 if (!ISBIG(PAIRSIZE(key, val), hashp))
H A Dpage.h142 #define ISBIG(N, P) (((N) > ((P)->hdr.bsize * MINFILL)) ? 1 : 0) macro
H A Dhash.c730 if (ISBIG(key->size + val->size, hashp))
/illumos-gate/usr/src/cmd/sendmail/db/hash/
H A Dhash_dup.c133 (HPAGE_PTYPE(hk) == H_OFFPAGE || ISBIG(hcp, new_size) ||
454 if (ISBIG(hcp, new_datalen) && (old_len > HOFFDUP_SIZE ||
458 if (!ISBIG(hcp, new_datalen) &&
467 new_datalen = ISBIG(hcp, new_datalen) ?
H A Dhash.c715 nbytes = (ISBIG(hcp, key->size) ? HOFFPAGE_PSIZE :
717 (ISBIG(hcp, data->size) ? HOFFPAGE_PSIZE :
H A Dhash_page.c1264 is_keybig = ISBIG(hcp, key->size);
1265 is_databig = ISBIG(hcp, val->size);
/illumos-gate/usr/src/cmd/sendmail/db/include/
H A Dhash.h171 #define ISBIG(I, N) (((N) > ((I)->hdr->pagesize / MINFILL)) ? 1 : 0) macro