/src/lib/libc/db/recno/ |
rec_seq.c | 68 recno_t nrec; local in function:__rec_seq 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 [all...] |
rec_seq.c | 68 recno_t nrec; local in function:__rec_seq 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 [all...] |
rec_delete.c | 70 recno_t nrec; local in function:__rec_delete 83 if ((nrec = *(recno_t *)key->data) == 0) 85 if (nrec > t->bt_nrecs) 87 --nrec; 88 status = rec_rdelete(t, nrec); 114 * nrec: record to delete 120 rec_rdelete(BTREE *t, recno_t nrec) 127 if ((e = __rec_search(t, nrec, SDELETE)) == NULL)
|
rec_delete.c | 70 recno_t nrec; local in function:__rec_delete 83 if ((nrec = *(recno_t *)key->data) == 0) 85 if (nrec > t->bt_nrecs) 87 --nrec; 88 status = rec_rdelete(t, nrec); 114 * nrec: record to delete 120 rec_rdelete(BTREE *t, recno_t nrec) 127 if ((e = __rec_search(t, nrec, SDELETE)) == NULL)
|
rec_get.c | 70 recno_t nrec; local in function:__rec_get 82 if (flags || (nrec = *(recno_t *)key->data) == 0) { 91 if (nrec > t->bt_nrecs) { 94 if ((status = t->bt_irec(t, nrec)) != RET_SUCCESS) 98 --nrec; 99 if ((e = __rec_search(t, nrec, SEARCH)) == NULL) 124 recno_t nrec; local in function:__rec_fpipe 139 for (nrec = t->bt_nrecs; nrec < top;) { 148 nrec, &data, 0) != RET_SUCCESS 177 recno_t nrec; local in function:__rec_vpipe 231 recno_t nrec; local in function:__rec_fmap 279 recno_t nrec; local in function:__rec_vmap [all...] |
rec_put.c | 69 recno_t nrec; local in function:__rec_put 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 [all...] |
rec_get.c | 70 recno_t nrec; local in function:__rec_get 82 if (flags || (nrec = *(recno_t *)key->data) == 0) { 91 if (nrec > t->bt_nrecs) { 94 if ((status = t->bt_irec(t, nrec)) != RET_SUCCESS) 98 --nrec; 99 if ((e = __rec_search(t, nrec, SEARCH)) == NULL) 124 recno_t nrec; local in function:__rec_fpipe 139 for (nrec = t->bt_nrecs; nrec < top;) { 148 nrec, &data, 0) != RET_SUCCESS 177 recno_t nrec; local in function:__rec_vpipe 231 recno_t nrec; local in function:__rec_fmap 279 recno_t nrec; local in function:__rec_vmap [all...] |
rec_put.c | 69 recno_t nrec; local in function:__rec_put 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 [all...] |
/src/usr.sbin/makemandb/ |
apropos-utils.h | 87 int nrec; // number of records to fetch member in struct:query_args
|
apropos-utils.h | 87 int nrec; // number of records to fetch member in struct:query_args
|