Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dllimits.h121 #if !defined(LUAI_MAXCCALLS)
122 #define LUAI_MAXCCALLS 20 macro
H A Dldo.c464 if (++L->nCcalls >= LUAI_MAXCCALLS) { in luaD_call()
465 if (L->nCcalls == LUAI_MAXCCALLS) in luaD_call()
467 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3))) in luaD_call()
575 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()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dldo.c371 if (++L->nCcalls >= LUAI_MAXCCALLS) { in luaD_call()
372 if (L->nCcalls == LUAI_MAXCCALLS) in luaD_call()
374 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3))) in luaD_call()
423 if (L->nCcalls >= LUAI_MAXCCALLS) in lua_resume()
H A Dluaconf.h468 #define LUAI_MAXCCALLS 200 macro
H A Dlundump.c164 if (++S->L->nCcalls > LUAI_MAXCCALLS) error(S,"code too deep"); in LoadFunction()
H A Dlparser.c277 if (++ls->L->nCcalls > LUAI_MAXCCALLS) in enterlevel()
941 luaY_checklimit(ls->fs, nvars, LUAI_MAXCCALLS - ls->L->nCcalls, in assignment()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.nested_pos.zcp16 -- This program should work with LUAI_MAXCCALLS=20
H A Dtst.nested_neg.zcp18 -- This program contains 243 levels, well beyond the LUAI_MAXCCALLS limit