Home
last modified time | relevance | path

Searched refs:LUAI_MAXCCALLS (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dllimits.h118 #if !defined(LUAI_MAXCCALLS)
119 #define LUAI_MAXCCALLS 200 macro
Dldo.c394 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()
500 if (nCcalls >= LUAI_MAXCCALLS) in resume()
Dlparser.c333 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels"); in enterlevel()
1145 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS, in assignment()