Home
last modified time | relevance | path

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

/freebsd/contrib/lua/src/
H A Dltests.h141 #undef LUAI_MAXCCALLS
142 #define LUAI_MAXCCALLS 180 macro
H A Dlstate.c101 return LUAI_MAXCCALLS; /* warning?? */ in lua_setcstacklimit()
166 if (getCcalls(L) == LUAI_MAXCCALLS) in luaE_checkcstack()
168 else if (getCcalls(L) >= (LUAI_MAXCCALLS / 10 * 11)) in luaE_checkcstack()
175 if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) in luaE_incCstack()
H A Dllimits.h254 #if !defined(LUAI_MAXCCALLS)
255 #define LUAI_MAXCCALLS 200 macro
H A Dldo.c631 if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) { in ccall()
844 if (getCcalls(L) >= LUAI_MAXCCALLS) in lua_resume()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dllimits.h121 #if !defined(LUAI_MAXCCALLS)
122 #define LUAI_MAXCCALLS 20 macro
H A Dldo.c478 if (++L->nCcalls >= LUAI_MAXCCALLS) { in luaD_call()
479 if (L->nCcalls == LUAI_MAXCCALLS) in luaD_call()
481 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3))) in luaD_call()
589 if (nCcalls >= LUAI_MAXCCALLS) in resume_cb()
H A Dlparser.c331 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels"); in enterlevel()
1149 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS, in assignment()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.nested_pos.zcp17 -- This program should work with LUAI_MAXCCALLS=20
H A Dtst.nested_neg.zcp19 -- This program contains 243 levels, well beyond the LUAI_MAXCCALLS limit