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

/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dldo.c126 unsigned short oldnCcalls = L->nCcalls;
135 L->nCcalls = oldnCcalls;
387 if (++L->nCcalls >= LUAI_MAXCCALLS) {
388 if (L->nCcalls == LUAI_MAXCCALLS)
390 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3)))
397 L->nCcalls--;
490 int nCcalls = L->nCcalls; local
493 if (nCcalls >= LUAI_MAXCCALLS)
524 lua_assert(nCcalls
[all...]
H A Dlstate.h165 unsigned short nCcalls; /* number of nested C calls */ member in struct:lua_State
H A Dlstate.c208 L->nCcalls = 0;
H A Dlparser.c332 ++L->nCcalls;
333 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels");
337 #define leavelevel(ls) ((ls)->L->nCcalls--)
1145 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS,

Completed in 286 milliseconds