Searched refs:LUAI_MAXCCALLS (Results 1 – 9 of 9) sorted by relevance
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | llimits.h | 121 #if !defined(LUAI_MAXCCALLS) 122 #define LUAI_MAXCCALLS 20 macro
|
| H A D | ldo.c | 464 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 D | lparser.c | 331 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 D | ldo.c | 371 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 D | luaconf.h | 468 #define LUAI_MAXCCALLS 200 macro
|
| H A D | lundump.c | 164 if (++S->L->nCcalls > LUAI_MAXCCALLS) error(S,"code too deep"); in LoadFunction()
|
| H A D | lparser.c | 277 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 D | tst.nested_pos.zcp | 16 -- This program should work with LUAI_MAXCCALLS=20
|
| H A D | tst.nested_neg.zcp | 18 -- This program contains 243 levels, well beyond the LUAI_MAXCCALLS limit
|