Searched refs:LUAI_MAXCCALLS (Results 1 – 8 of 8) sorted by relevance
101 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 (unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) in luaE_incCstack()
243 #if !defined(LUAI_MAXCCALLS)244 #define LUAI_MAXCCALLS 200 macro
544 if (unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) in ccall()
121 #if !defined(LUAI_MAXCCALLS)122 #define LUAI_MAXCCALLS 20 macro
463 if (++L->nCcalls >= LUAI_MAXCCALLS) { in luaD_call()464 if (L->nCcalls == LUAI_MAXCCALLS) in luaD_call()466 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3))) in luaD_call()574 if (nCcalls >= LUAI_MAXCCALLS) in resume_cb()
331 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels"); in enterlevel()1149 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS, in assignment()
16 -- This program should work with LUAI_MAXCCALLS=20
18 -- This program contains 243 levels, well beyond the LUAI_MAXCCALLS limit