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

/netbsd-current/lib/libc/db/btree/
H A Dbt_page.c67 h->nextpg = t->bt_free;
94 t->bt_free = h->nextpg;
H A Dbt_overflow.c59 * nextpg field of the PAGE header.
114 for (p = *buf;; p = (char *)p + nb, pg = h->nextpg) {
165 h->nextpg = h->prevpg = P_INVALID;
173 last->nextpg = h->pgno;
225 pg = h->nextpg;
H A Dbt_delete.c152 recno_t nextpg, prevpg; local
176 if ((nextpg = h->nextpg) == P_INVALID)
211 if ((h = mpool_get(t->bt_mp, nextpg, 0)) == NULL)
590 if (idx == (unsigned)(NEXTINDEX(h) - 1) && h->nextpg != P_INVALID) {
591 if ((pg = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
628 if (h->nextpg != P_INVALID) {
629 if ((pg = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
637 pg->nextpg = h->nextpg;
[all...]
H A Dbt_conv.c80 M_32_SWAP(h->nextpg);
189 M_32_SWAP(h->nextpg);
H A Dbt_split.c361 r->nextpg = h->nextpg;
375 if (h->nextpg == P_INVALID && *skip == NEXTINDEX(h)) {
379 h->nextpg = r->pgno;
396 l->nextpg = r->pgno;
403 if (h->nextpg != P_INVALID) {
404 if ((tp = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL) {
463 l->nextpg = r->pgno;
465 l->prevpg = r->nextpg = P_INVALID;
H A Dbt_put.c228 if (h->nextpg == P_INVALID) {
290 if (t->bt_cur.page->nextpg != P_INVALID)
H A Dbt_search.c113 h->nextpg != P_INVALID &&
164 if ((e.page = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
H A Dbt_seq.c326 pg = h->nextpg;
538 pg = h->nextpg;
H A Dbt_open.c381 root->prevpg = root->nextpg = P_INVALID;
H A Dbt_debug.c228 (void)fprintf(tracefp, "\tprev %2d next %2d", h->prevpg, h->nextpg);
H A Dbtree.h72 pgno_t nextpg; /* right sibling */ member in struct:_page
/netbsd-current/tests/lib/libc/db/
H A Dh_db.c536 if (h->prevpg == P_INVALID || h->nextpg == P_INVALID)
552 h->nextpg = P_INVALID;

Completed in 264 milliseconds