Searched defs:nCcalls (Results 1 - 2 of 2) 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

Completed in 396 milliseconds