Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/lua/src/
HDltests.h141 #undef LUAI_MAXCCALLS
142 #define LUAI_MAXCCALLS 180 macro
HDlstate.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()
HDllimits.h254 #if !defined(LUAI_MAXCCALLS)
255 #define LUAI_MAXCCALLS 200 macro
HDldo.c631 if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) { in ccall()
844 if (getCcalls(L) >= LUAI_MAXCCALLS) in lua_resume()
/freebsd-14-stable/sys/contrib/openzfs/module/lua/
HDllimits.h120 #if !defined(LUAI_MAXCCALLS)
121 #define LUAI_MAXCCALLS 20 macro
HDldo.c477 if (++L->nCcalls >= LUAI_MAXCCALLS) { in luaD_call()
478 if (L->nCcalls == LUAI_MAXCCALLS) in luaD_call()
480 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3))) in luaD_call()
588 if (nCcalls >= LUAI_MAXCCALLS) in resume_cb()
HDlparser.c330 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels"); in enterlevel()
1148 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS, in assignment()
/freebsd-14-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
HDtst.nested_pos.zcp16 -- This program should work with LUAI_MAXCCALLS=20
HDtst.nested_neg.zcp18 -- This program contains 243 levels, well beyond the LUAI_MAXCCALLS limit