Searched refs:nextpg (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/lib/libc/db/btree/
H A Dbt_page.c64 h->nextpg = t->bt_free;
91 t->bt_free = h->nextpg;
H A Dbt_overflow.c56 * nextpg field of the PAGE header.
108 for (p = *buf;; p = (char *)p + nb, pg = h->nextpg) {
153 h->nextpg = h->prevpg = P_INVALID;
161 last->nextpg = h->pgno;
210 pg = h->nextpg;
H A Dbt_search.c110 h->nextpg != P_INVALID &&
156 if ((e.page = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
H A Dbt_delete.c149 recno_t nextpg, prevpg; local
173 if ((nextpg = h->nextpg) == P_INVALID)
208 if ((h = mpool_get(t->bt_mp, nextpg, 0)) == NULL)
586 if (idx == NEXTINDEX(h) - 1 && h->nextpg != P_INVALID) {
587 if ((pg = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
624 if (h->nextpg != P_INVALID) {
625 if ((pg = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
633 pg->nextpg = h->nextpg;
[all...]
H A Dbt_split.c353 r->nextpg = h->nextpg;
367 if (h->nextpg == P_INVALID && *skip == NEXTINDEX(h)) {
371 h->nextpg = r->pgno;
385 l->nextpg = r->pgno;
392 if (h->nextpg != P_INVALID) {
393 if ((tp = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL) {
452 l->nextpg = r->pgno;
454 l->prevpg = r->nextpg = P_INVALID;
H A Dbt_conv.c78 M_32_SWAP(h->nextpg);
184 M_32_SWAP(h->nextpg);
H A Dbt_put.c226 if (h->nextpg == P_INVALID) {
288 if (t->bt_cur.page->nextpg != P_INVALID)
H A Dbt_seq.c277 pg = h->nextpg;
406 pg = h->nextpg;
H A Dbtree.h69 pgno_t nextpg; /* right sibling */ member in struct:_page
H A Dbt_debug.c176 (void)fprintf(stderr, "\tprev %2u next %2u", h->prevpg, h->nextpg);
H A Dbt_open.c379 root->prevpg = root->nextpg = P_INVALID;
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/db/
H A Dh_db.c551 if (h->prevpg == P_INVALID || h->nextpg == P_INVALID)
567 h->nextpg = P_INVALID;

Completed in 122 milliseconds