Searched refs:npg (Results 1 - 4 of 4) sorted by relevance

/barrelfish-master/lib/libc/db/btree/
H A Dbt_page.c76 * npg: storage for page number.
82 __bt_new(BTREE *t, pgno_t *npg) argument
88 *npg = t->bt_free;
93 return (mpool_new(t->bt_mp, npg, MPOOL_PAGE_NEXT));
H A Dbt_overflow.c136 pgno_t npg; local
147 if ((h = __bt_new(t, &npg)) == NULL)
150 h->pgno = npg;
H A Dbt_open.c351 pgno_t npg; local
368 if ((meta = mpool_new(t->bt_mp, &npg, MPOOL_PAGE_NEXT)) == NULL)
371 if ((root = mpool_new(t->bt_mp, &npg, MPOOL_PAGE_NEXT)) == NULL)
374 if (npg != P_ROOT)
376 root->pgno = npg;
H A Dbt_split.c340 pgno_t npg; local
346 if ((r = __bt_new(t, &npg)) == NULL)
348 r->pgno = npg;

Completed in 82 milliseconds