Searched refs:nrec (Results 1 - 15 of 15) sorted by relevance

/netbsd-6-1-5-RELEASE/lib/libc/db/recno/
H A Drec_seq.c68 recno_t nrec; local
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
[all...]
H A Drec_get.c70 recno_t nrec; local
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
140 for (nrec = t->bt_nrecs; nrec < top;) {
149 nrec,
178 recno_t nrec; local
233 recno_t nrec; local
282 recno_t nrec; local
[all...]
H A Drec_put.c69 recno_t nrec; local
111 nrec = t->bt_cursor.rcursor;
114 if ((nrec = *(recno_t *)key->data) == 0)
118 if ((nrec = *(recno_t *)key->data) == 0) {
119 nrec = 1;
125 if ((nrec = *(recno_t *)key->data) == 0)
129 if ((nrec = *(recno_t *)key->data) == 0)
131 if (nrec <= t->bt_nrecs)
143 if (nrec > t->bt_nrecs) {
145 t->bt_irec(t, nrec)
195 __rec_iput(BTREE *t, recno_t nrec, const DBT *data, u_int flags) argument
[all...]
H A Drec_delete.c70 recno_t nrec; local
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) argument
127 if ((e = __rec_search(t, nrec, SDELETE)) == NULL)
H A Drec_utils.c56 * nrec: record number
64 __rec_ret(BTREE *t, EPG *e, recno_t nrec, DBT *key, DBT *data) argument
82 memmove(t->bt_rkey.data, &nrec, sizeof(recno_t));
/netbsd-6-1-5-RELEASE/usr.sbin/makemandb/
H A Dapropos-utils.h75 int nrec; // number of records to fetch member in struct:query_args
H A Dapropos.c171 args.nrec = aflags.nresults ? aflags.nresults : 10;
H A Dapropos-utils.c510 if (args->nrec >= 0) {
513 args->nrec, args->offset);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/arm/
H A Dunwind-arm.c351 search_EIT_table (const __EIT_entry * table, int nrec, _uw return_address) argument
357 if (nrec == 0)
361 right = nrec - 1;
367 if (n != nrec - 1)
393 int nrec; local
405 &nrec);
415 nrec = &__exidx_end - &__exidx_start;
418 eitp = search_EIT_table (eitp, nrec, return_address);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/arm/
H A Dunwind-arm.c550 search_EIT_table (const __EIT_entry * table, int nrec, _uw return_address) argument
556 if (nrec == 0)
560 right = nrec - 1;
566 if (n != nrec - 1)
592 int nrec; local
604 &nrec);
614 nrec = &__exidx_end - &__exidx_start;
617 eitp = search_EIT_table (eitp, nrec, return_address);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/bfd/
H A Dxsym.c1698 long nrec, eloff, i; local
1705 bfd_sym_fetch_long (buf, len, offset, &offset, &nrec);
1706 fprintf (f, "%lu elements: ", (unsigned long) nrec);
1708 for (i = 0; i < nrec; i++)
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/bfd/
H A Dxsym.c1698 long nrec, eloff, i; local
1705 bfd_sym_fetch_long (buf, len, offset, &offset, &nrec);
1706 fprintf (f, "%lu elements: ", (unsigned long) nrec);
1708 for (i = 0; i < nrec; i++)
/netbsd-6-1-5-RELEASE/external/mit/lua/dist/src/
H A Dlua.h183 LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec);
H A Dlapi.c580 LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { argument
583 sethvalue(L, L->top, luaH_new(L, narray, nrec));
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_consume.c2224 dtrace_recdesc_t *nrec; local
2227 nrec = &epd->dtepd_rec[j];
2229 if (nrec->dtrd_uarg != rec->dtrd_uarg)
2232 if (nrec->dtrd_action != act) {
2238 nrec->dtrd_offset;

Completed in 159 milliseconds