Lines Matching refs:PAGE
49 static int bt_broot(BTREE *, PAGE *, PAGE *, PAGE *);
50 static PAGE *bt_page(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t);
52 static PAGE *bt_psplit(BTREE *, PAGE *, PAGE *, PAGE *, indx_t *, size_t);
53 static PAGE *bt_root(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t);
54 static int bt_rroot(BTREE *, PAGE *, PAGE *, PAGE *);
55 static recno_t rec_total(PAGE *);
77 __bt_split(BTREE *t, PAGE *sp, const DBT *key, const DBT *data, int flags, in __bt_split()
84 PAGE *h, *l, *r, *lchild, *rchild; in __bt_split()
336 static PAGE *
337 bt_page(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen) in bt_page()
339 PAGE *l, *r, *tp; in bt_page()
378 if ((l = (PAGE *)calloc(1, t->bt_psize)) == NULL) { in bt_page()
434 static PAGE *
435 bt_root(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen) in bt_root()
437 PAGE *l, *r, *tp; in bt_root()
478 bt_rroot(BTREE *t, PAGE *h, PAGE *l, PAGE *r) in bt_rroot()
516 bt_broot(BTREE *t, PAGE *h, PAGE *l, PAGE *r) in bt_broot()
593 static PAGE *
594 bt_psplit(BTREE *t, PAGE *h, PAGE *l, PAGE *r, indx_t *pskip, size_t ilen) in bt_psplit()
600 PAGE *rval; in bt_psplit()
770 PAGE *h; in bt_preserve()
794 rec_total(PAGE *h) in rec_total()