Lines Matching refs:nCcalls
210 unsigned short oldnCcalls = L->nCcalls; in luaD_rawrunprotected()
219 L->nCcalls = oldnCcalls; in luaD_rawrunprotected()
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()
493 L->nCcalls--; in luaD_call()
586 int nCcalls = L->nCcalls; in resume_cb() local
589 if (nCcalls >= LUAI_MAXCCALLS) in resume_cb()
620 lua_assert(nCcalls == L->nCcalls); in resume_cb()
629 L->nCcalls = (from) ? from->nCcalls + 1 : 1; in lua_resume()
649 L->nCcalls--; in lua_resume()
650 lua_assert(L->nCcalls == ((from) ? from->nCcalls : 0)); in lua_resume()