Lines Matching refs:indx_t
46 static PAGE *bt_page(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t);
48 static PAGE *bt_psplit(BTREE *, PAGE *, PAGE *, PAGE *, indx_t *, size_t);
49 static PAGE *bt_root(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t);
81 indx_t nxtindex; in __bt_split()
204 if ((u_int32_t)(h->upper - h->lower) < nbytes + sizeof(indx_t)) { in __bt_split()
215 (nxtindex - skip) * sizeof(indx_t)); in __bt_split()
216 h->lower += sizeof(indx_t); in __bt_split()
333 bt_page(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen) in bt_page()
366 r->lower = BTDATAOFF + sizeof(indx_t); in bt_page()
431 bt_root(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen) in bt_root()
489 h->lower = BTDATAOFF + 2 * sizeof(indx_t); in bt_rroot()
565 h->lower = BTDATAOFF + 2 * sizeof(indx_t); in bt_broot()
590 bt_psplit(BTREE *t, PAGE *h, PAGE *l, PAGE *r, indx_t *pskip, size_t ilen) in bt_psplit()
598 indx_t full, half, nxt, off, skip, top, used; in bt_psplit()
649 if ((skip <= off && used + nbytes + sizeof(indx_t) >= full) || in bt_psplit()
663 used += nbytes + sizeof(indx_t); in bt_psplit()
676 l->lower += (off + 1) * sizeof(indx_t); in bt_psplit()
739 r->lower += off * sizeof(indx_t); in bt_psplit()
743 r->lower += sizeof(indx_t); in bt_psplit()
793 indx_t nxt, top; in rec_total()