Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldo.c126 unsigned short oldnCcalls = L->nCcalls; in luaD_rawrunprotected()
135 L->nCcalls = oldnCcalls; in luaD_rawrunprotected()
394 if (++L->nCcalls >= LUAI_MAXCCALLS) { in luaD_call()
395 if (L->nCcalls == LUAI_MAXCCALLS) in luaD_call()
397 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3))) in luaD_call()
404 L->nCcalls--; in luaD_call()
497 int nCcalls = L->nCcalls; in resume() local
500 if (nCcalls >= LUAI_MAXCCALLS) in resume()
531 lua_assert(nCcalls == L->nCcalls); in resume()
540 L->nCcalls = (from) ? from->nCcalls + 1 : 1; in lua_resume()
[all …]
Dlstate.h165 unsigned short nCcalls; /* number of nested C calls */ member
Dlstate.c210 L->nCcalls = 0; in preinit_state()
Dlparser.c332 ++L->nCcalls; in enterlevel()
333 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels"); in enterlevel()
337 #define leavelevel(ls) ((ls)->L->nCcalls--)
1145 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS, in assignment()