Home
last modified time | relevance | path

Searched refs:nCcalls (Results 1 – 4 of 4) sorted by relevance

/external/lua/src/
Dldo.c137 unsigned short oldnCcalls = L->nCcalls; in luaD_rawrunprotected()
146 L->nCcalls = oldnCcalls; in luaD_rawrunprotected()
482 if (L->nCcalls == LUAI_MAXCCALLS) in stackerror()
484 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3))) in stackerror()
496 if (++L->nCcalls >= LUAI_MAXCCALLS) in luaD_call()
500 L->nCcalls--; in luaD_call()
658 L->nCcalls = (from) ? from->nCcalls + 1 : 1; in lua_resume()
659 if (L->nCcalls >= LUAI_MAXCCALLS) in lua_resume()
680 L->nCcalls--; in lua_resume()
681 lua_assert(L->nCcalls == ((from) ? from->nCcalls : 0)); in lua_resume()
Dlstate.h199 unsigned short nCcalls; /* number of nested C calls */ member
Dlparser.c333 ++L->nCcalls; in enterlevel()
334 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels"); in enterlevel()
338 #define leavelevel(ls) ((ls)->L->nCcalls--)
1156 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS, in assignment()
Dlstate.c229 L->nCcalls = 0; in preinit_thread()