Searched defs:recno (Results 1 - 6 of 6) sorted by relevance
/osnet-11/usr/src/cmd/sendmail/db/btree/ |
H A D | bt_rsearch.c | 79 db_recno_t i, recno, total; local 149 *recnop = recno = total + 1; 151 recno = *recnop; 152 if (recno <= total) 156 if (!LF_ISSET(S_PAST_EOF) || recno > total + 1) { 166 * Record numbers in the tree are 0-based, but the recno is 173 recno -= total; 181 if (recno <= (db_recno_t)NUM_ENT(h) / P_INDX) 182 for (i = recno - 1;; --i) { 185 ++recno; [all...] |
H A D | bt_search.c | 86 db_recno_t recno; local 92 recno = 0; 207 recno += GET_BINTERNAL(h, i)->nrecs; 254 *recnop = recno + (indx / P_INDX) + 1;
|
H A D | bt_cursor.c | 111 cp->recno = RECNO_OOB; 716 db_recno_t recno; local 736 1, &recno, &exact)) != 0) 739 ret = __db_retcopy(data, &recno, sizeof(recno), 1401 db_recno_t recno; local 1412 if ((ret = __ram_getno(dbc, key, &recno, 0)) != 0) 1416 ret = __bam_rsearch(dbc, &recno, sflags, 1, exactp);
|
H A D | bt_recno.c | 43 * In recno, there are two meanings to the on-page "deleted" flag. If we're 92 /* Allocate and initialize the private recno structure. */ 95 /* Link in the private recno structure. */ 96 t->recno = rp; 204 db_recno_t recno; local 221 if ((ret = __ram_getno(dbc, key, &recno, 0)) != 0) 226 cp->recno = recno; 238 * Internal version of recno delete, called by __ram_delete and 277 if ((ret = __bam_rsearch(dbc, &cp->recno, S_DELET 360 db_recno_t recno; local 840 db_recno_t recno; local 1145 db_recno_t recno; local 1217 db_recno_t recno; local [all...] |
/osnet-11/usr/src/lib/libntsvcs/common/ |
H A D | eventlog_svc.c | 433 DWORD recno, logr_record_t *rec) 460 rec->RecordNumber = LE_IN32(&recno); 432 logr_set_logrecord(char *src_name, logr_entry_t *le, DWORD recno, logr_record_t *rec) argument
|
/osnet-11/usr/src/cmd/sendmail/db/include/ |
H A D | btree.h | 177 /* Per-thread information: shared by btree/recno. */ 195 /* Per-thread information: recno private. */ 196 db_recno_t recno; /* Current record number. */ member in struct:__cursor 205 * When renumbering recno databases during deletes, cursors referencing 214 * The in-memory recno data structure. 257 RECNO *recno; /* Private recno structure. */ member in struct:__btree
|
Completed in 35 milliseconds