Home | History | Annotate | Download | only in btree

Lines Matching defs:up

372  * Get the first item on the next page, but by going up and down the tree.
379 EPGNO *up;
385 /* Move up the tree. */
386 up = BT_POP(t);
389 if (up == NULL)
391 if ((h = mpool_get(t->bt_mp, up->pgno, 0)) == NULL)
393 idx = up->index;
411 * Get the last item on the previous page, but by going up and down the tree.
418 EPGNO *up;
424 /* Move up the tree. */
425 up = BT_POP(t);
428 if (up == NULL)
430 if ((h = mpool_get(t->bt_mp, up->pgno, 0)) == NULL)
432 idx = up->index;