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

/freebsd-13-stable/lib/libc/db/recno/
H A Drec_seq.c66 recno_t nrec; local
79 if ((nrec = *(recno_t *)key->data) == 0)
84 nrec = t->bt_cursor.rcursor + 1;
89 nrec = 1;
93 if ((nrec = t->bt_cursor.rcursor - 1) == 0)
102 nrec = t->bt_nrecs;
109 if (t->bt_nrecs == 0 || nrec > t->bt_nrecs) {
111 (status = t->bt_irec(t, nrec)) != RET_SUCCESS)
113 if (t->bt_nrecs == 0 || nrec > t->bt_nrecs)
117 if ((e = __rec_search(t, nrec
[all...]
H A Drec_get.c67 recno_t nrec; local
79 if (flags || (nrec = *(recno_t *)key->data) == 0) {
88 if (nrec > t->bt_nrecs) {
91 if ((status = t->bt_irec(t, nrec)) != RET_SUCCESS)
95 --nrec;
96 if ((e = __rec_search(t, nrec, SEARCH)) == NULL)
121 recno_t nrec; local
135 for (nrec = t->bt_nrecs; nrec < top;) {
144 nrec,
173 recno_t nrec; local
226 recno_t nrec; local
273 recno_t nrec; local
[all...]
H A Drec_put.c66 recno_t nrec; local
107 nrec = t->bt_cursor.rcursor;
110 if ((nrec = *(recno_t *)key->data) == 0)
114 if ((nrec = *(recno_t *)key->data) == 0) {
115 nrec = 1;
121 if ((nrec = *(recno_t *)key->data) == 0)
125 if ((nrec = *(recno_t *)key->data) == 0)
127 if (nrec <= t->bt_nrecs)
139 if (nrec > t->bt_nrecs) {
141 t->bt_irec(t, nrec)
190 __rec_iput(BTREE *t, recno_t nrec, const DBT *data, u_int flags) argument
[all...]
H A Drec_delete.c67 recno_t nrec; local
80 if ((nrec = *(recno_t *)key->data) == 0)
82 if (nrec > t->bt_nrecs)
84 --nrec;
85 status = rec_rdelete(t, nrec);
111 * nrec: record to delete
117 rec_rdelete(BTREE *t, recno_t nrec) argument
124 if ((e = __rec_search(t, nrec, SDELETE)) == NULL)
H A Drec_utils.c54 * nrec: record number
62 __rec_ret(BTREE *t, EPG *e, recno_t nrec, DBT *key, DBT *data) argument
78 memmove(t->bt_rkey.data, &nrec, sizeof(recno_t));
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/plockstat/
H A Dplockstat.c743 const dtrace_recdesc_t *nrec = &rec[i]; local
745 if (nrec->dtrd_uarg != rec->dtrd_uarg)
750 nrec->dtrd_offset);
/freebsd-13-stable/sys/contrib/openzfs/include/sys/lua/
H A Dlua.h229 LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec);
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_consume.c2437 dtrace_recdesc_t *nrec; local
2440 nrec = &epd->dtepd_rec[j];
2442 if (nrec->dtrd_uarg != rec->dtrd_uarg)
2445 if (nrec->dtrd_action != act) {
2451 nrec->dtrd_offset;
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dlapi.c670 LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { argument
677 if (narray > 0 || nrec > 0)
678 luaH_resize(L, t, narray, nrec);
/freebsd-13-stable/contrib/lua/src/
H A Dlapi.c728 LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { argument
734 if (narray > 0 || nrec > 0)
735 luaH_resize(L, t, narray, nrec);
H A Dlua.h258 LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec);

Completed in 201 milliseconds