Home | History | Annotate | Download | only in recno

Lines Matching defs:nrec

68 	recno_t nrec;
81 if ((nrec = *(recno_t *)key->data) == 0)
86 nrec = t->bt_cursor.rcursor + 1;
91 nrec = 1;
95 if ((nrec = t->bt_cursor.rcursor - 1) == 0)
104 nrec = t->bt_nrecs;
111 if (t->bt_nrecs == 0 || nrec > t->bt_nrecs) {
113 (status = t->bt_irec(t, nrec)) != RET_SUCCESS)
115 if (t->bt_nrecs == 0 || nrec > t->bt_nrecs)
119 if ((e = __rec_search(t, nrec - 1, SEARCH)) == NULL)
123 t->bt_cursor.rcursor = nrec;
125 status = __rec_ret(t, e, nrec, key, data);