Searched refs:nextpg (Results 1 – 12 of 12) sorted by relevance
/freebsd/lib/libc/db/btree/ |
H A D | bt_delete.c | 143 recno_t nextpg, prevpg; in __bt_stkacq() local 167 if ((nextpg = h->nextpg) == P_INVALID) in __bt_stkacq() 202 if ((h = mpool_get(t->bt_mp, nextpg, 0)) == NULL) in __bt_stkacq() 580 if (idx == NEXTINDEX(h) - 1 && h->nextpg != P_INVALID) { in __bt_curdel() 581 if ((pg = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL) in __bt_curdel() 618 if (h->nextpg != P_INVALID) { in __bt_relink() 619 if ((pg = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL) in __bt_relink() 627 pg->nextpg = h->nextpg; in __bt_relink()
|
H A D | bt_overflow.c | 102 for (p = *buf;; p = (char *)p + nb, pg = h->nextpg) { in __ovfl_get() 147 h->nextpg = h->prevpg = P_INVALID; in __ovfl_put() 155 last->nextpg = h->pgno; in __ovfl_put() 204 pg = h->nextpg; in __ovfl_delete()
|
H A D | bt_split.c | 347 r->nextpg = h->nextpg; in bt_page() 361 if (h->nextpg == P_INVALID && *skip == NEXTINDEX(h)) { in bt_page() 365 h->nextpg = r->pgno; in bt_page() 379 l->nextpg = r->pgno; in bt_page() 386 if (h->nextpg != P_INVALID) { in bt_page() 387 if ((tp = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL) { in bt_page() 446 l->nextpg = r->pgno; in bt_root() 448 l->prevpg = r->nextpg = P_INVALID; in bt_root()
|
H A D | bt_page.c | 58 h->nextpg = t->bt_free; in __bt_free() 85 t->bt_free = h->nextpg; in __bt_new()
|
H A D | bt_search.c | 104 h->nextpg != P_INVALID && in __bt_search() 150 if ((e.page = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL) in __bt_snext()
|
H A D | bt_conv.c | 72 M_32_SWAP(h->nextpg); in __bt_pgin() 178 M_32_SWAP(h->nextpg); in __bt_pgout()
|
H A D | bt_put.c | 220 if (h->nextpg == P_INVALID) { in __bt_put() 282 if (t->bt_cur.page->nextpg != P_INVALID) in bt_fast()
|
H A D | bt_seq.c | 271 pg = h->nextpg; in __bt_seqadv() 400 pg = h->nextpg; in __bt_first()
|
H A D | btree.h | 66 pgno_t nextpg; /* right sibling */ member
|
H A D | bt_debug.c | 170 (void)fprintf(stderr, "\tprev %2u next %2u", h->prevpg, h->nextpg); in __bt_dpage()
|
H A D | bt_open.c | 373 root->prevpg = root->nextpg = P_INVALID; in nroot()
|
/freebsd/contrib/netbsd-tests/lib/libc/db/ |
H A D | h_db.c | 551 if (h->prevpg == P_INVALID || h->nextpg == P_INVALID) in unlinkpg() 567 h->nextpg = P_INVALID; in unlinkpg()
|