Home | History | Annotate | Download | only in recno

Lines Matching defs:nrec

69 	recno_t nrec;
110 nrec = t->bt_cursor.rcursor;
113 if ((nrec = *(recno_t *)key->data) == 0)
117 if ((nrec = *(recno_t *)key->data) == 0) {
118 nrec = 1;
124 if ((nrec = *(recno_t *)key->data) == 0)
128 if ((nrec = *(recno_t *)key->data) == 0)
130 if (nrec <= t->bt_nrecs)
142 if (nrec > t->bt_nrecs) {
144 t->bt_irec(t, nrec) == RET_ERROR)
146 if (nrec > t->bt_nrecs + 1) {
156 while (nrec > t->bt_nrecs + 1)
165 if ((status = __rec_iput(t, nrec - 1, &fdata, flags)) != RET_SUCCESS)
170 nrec++;
173 t->bt_cursor.rcursor = nrec;
178 return (__rec_ret(t, NULL, nrec, key, NULL));
186 * nrec: record number
193 __rec_iput(BTREE *t, recno_t nrec, const DBT *data, u_int flags)
225 if ((e = __rec_search(t, nrec,
226 nrec > t->bt_nrecs || flags == R_IAFTER || flags == R_IBEFORE ?
246 if (nrec < t->bt_nrecs &&