Home | History | Annotate | Download | only in btree

Lines Matching refs:bt_cur

278 	t->bt_cur.page = h;
279 t->bt_cur.index = t->bt_last.index;
290 if (t->bt_cur.page->nextpg != P_INVALID)
292 if (t->bt_cur.index != NEXTINDEX(h) - 1)
294 if ((cmp = __bt_cmp(t, key, &t->bt_cur)) < 0)
296 t->bt_last.index = cmp ? ++t->bt_cur.index : t->bt_cur.index;
298 if (t->bt_cur.page->prevpg != P_INVALID)
300 if (t->bt_cur.index != 0)
302 if ((cmp = __bt_cmp(t, key, &t->bt_cur)) > 0)
310 return (&t->bt_cur);