Home | History | Annotate | Download | only in btree

Lines Matching defs:idx

72 	indx_t base, idx, lim;
84 t->bt_cur.index = idx = base + ((uint32_t)lim >> 1);
93 base = idx + 1;
129 idx = base ? base - 1 : base;
131 next: BT_PUSH(t, h->pgno, idx);
132 pg = GETBINTERNAL(h, idx)->pgno;
156 indx_t idx = 0;
187 idx = parent->index + 1;
188 BT_PUSH(t, h->pgno, idx);
198 bi = GETBINTERNAL(h, idx);
208 idx = 0;
233 indx_t idx = 0;
265 idx = parent->index - 1;
266 BT_PUSH(t, h->pgno, idx);
275 bi = GETBINTERNAL(h, idx);
285 idx = NEXTINDEX(h) - 1;
286 BT_PUSH(t, pgno, idx);