Searched refs:LUAI_MAXCCALLS (Results 1 – 9 of 9) sorted by relevance
141 #undef LUAI_MAXCCALLS142 #define LUAI_MAXCCALLS 180 macro
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 (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) in luaE_incCstack()
254 #if !defined(LUAI_MAXCCALLS)255 #define LUAI_MAXCCALLS 200 macro
631 if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) { in ccall()844 if (getCcalls(L) >= LUAI_MAXCCALLS) in lua_resume()
121 #if !defined(LUAI_MAXCCALLS)122 #define LUAI_MAXCCALLS 20 macro
478 if (++L->nCcalls >= LUAI_MAXCCALLS) { in luaD_call()479 if (L->nCcalls == LUAI_MAXCCALLS) in luaD_call()481 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3))) in luaD_call()589 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()
17 -- This program should work with LUAI_MAXCCALLS=20
19 -- This program contains 243 levels, well beyond the LUAI_MAXCCALLS limit