Home
last modified time | relevance | path

Searched refs:nCcalls (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dldo.c130 unsigned short oldnCcalls = L->nCcalls; in luaD_rawrunprotected()
139 L->nCcalls = oldnCcalls; in luaD_rawrunprotected()
398 if (++L->nCcalls >= LUAI_MAXCCALLS) { in luaD_call()
399 if (L->nCcalls == LUAI_MAXCCALLS) in luaD_call()
408 L->nCcalls--; in luaD_call()
501 int nCcalls = L->nCcalls; in resume_cb() local
504 if (nCcalls >= LUAI_MAXCCALLS) in resume_cb()
535 lua_assert(nCcalls == L->nCcalls); in resume_cb()
544 L->nCcalls = (from) ? from->nCcalls + 1 : 1; in lua_resume()
564 L->nCcalls--; in lua_resume()
[all …]
H A Dlstate.h165 unsigned short nCcalls; /* number of nested C calls */ member
H A Dlstate.c208 L->nCcalls = 0; in preinit_state()
H A Dlparser.c331 ++L->nCcalls; in enterlevel()
332 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels"); in enterlevel()
336 #define leavelevel(ls) ((ls)->L->nCcalls--)
1144 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS, in assignment()