HomeSort by relevance Sort by last modified time
    Searched refs:nCcalls (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
ldo.c 126 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;
493 if (nCcalls >= LUAI_MAXCCALLS)
524 lua_assert(nCcalls == L->nCcalls)
    [all...]
lstate.h 165 unsigned short nCcalls; /* number of nested C calls */
lstate.c 208 L->nCcalls = 0;
lparser.c 332 ++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,
    [all...]

Completed in 71 milliseconds