Searched refs:nCcalls (Results 1 – 10 of 10) sorted by relevance
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | ldo.c | 86 L->nCcalls = L->baseCcalls; in resetstack() 371 if (++L->nCcalls >= LUAI_MAXCCALLS) { in luaD_call() 372 if (L->nCcalls == LUAI_MAXCCALLS) in luaD_call() 379 L->nCcalls--; in luaD_call() 423 if (L->nCcalls >= LUAI_MAXCCALLS) in lua_resume() 427 L->baseCcalls = ++L->nCcalls; in lua_resume() 435 lua_assert(L->nCcalls == L->baseCcalls); in lua_resume() 438 --L->nCcalls; in lua_resume() 447 if (L->nCcalls > L->baseCcalls) in lua_yield() 459 unsigned short oldnCcalls = L->nCcalls; in luaD_pcall() [all …]
|
| H A D | lstate.c | 96 L->nCcalls = L->baseCcalls = 0; in preinit_state() 208 L->nCcalls = L->baseCcalls = 0; in lua_close()
|
| H A D | lundump.c | 164 if (++S->L->nCcalls > LUAI_MAXCCALLS) error(S,"code too deep"); in LoadFunction() 179 S->L->nCcalls--; in LoadFunction()
|
| H A D | lstate.h | 114 unsigned short nCcalls; /* number of nested C calls */ member
|
| H A D | lparser.c | 277 if (++ls->L->nCcalls > LUAI_MAXCCALLS) in enterlevel() 282 #define leavelevel(ls) ((ls)->L->nCcalls--) 941 luaY_checklimit(ls->fs, nvars, LUAI_MAXCCALLS - ls->L->nCcalls, in assignment()
|
| H A D | lapi.c | 126 to->nCcalls = from->nCcalls; in lua_setlevel()
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | ldo.c | 195 unsigned short oldnCcalls = L->nCcalls; in luaD_rawrunprotected() 205 L->nCcalls = oldnCcalls; in luaD_rawrunprotected() 464 if (++L->nCcalls >= LUAI_MAXCCALLS) { in luaD_call() 465 if (L->nCcalls == LUAI_MAXCCALLS) in luaD_call() 479 L->nCcalls--; in luaD_call() 572 int nCcalls = L->nCcalls; in resume_cb() local 575 if (nCcalls >= LUAI_MAXCCALLS) in resume_cb() 606 lua_assert(nCcalls == L->nCcalls); in resume_cb() 615 L->nCcalls = (from) ? from->nCcalls + 1 : 1; in lua_resume() 635 L->nCcalls--; in lua_resume() [all …]
|
| H A D | lstate.h | 166 unsigned short nCcalls; /* number of nested C calls */ member
|
| H A D | lstate.c | 207 L->nCcalls = 0; in preinit_state()
|
| H A D | lparser.c | 330 ++L->nCcalls; in enterlevel() 331 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels"); in enterlevel() 335 #define leavelevel(ls) ((ls)->L->nCcalls--) 1149 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS, in assignment()
|