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

/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dldo.c136 unsigned short oldnCcalls = L->nCcalls;
145 L->nCcalls = oldnCcalls;
404 if (++L->nCcalls >= LUAI_MAXCCALLS) {
405 if (L->nCcalls == LUAI_MAXCCALLS)
407 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3)))
414 L->nCcalls--;
507 int nCcalls = L->nCcalls; local
510 if (nCcalls >= LUAI_MAXCCALLS)
541 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.c331 ++L->nCcalls;
332 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels");
336 #define leavelevel(ls) ((ls)->L->nCcalls--)
1144 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS,
/freebsd-11-stable/contrib/lua/src/
H A Dldo.c137 unsigned short oldnCcalls = L->nCcalls;
146 L->nCcalls = oldnCcalls;
482 if (L->nCcalls == LUAI_MAXCCALLS)
484 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3)))
496 if (++L->nCcalls >= LUAI_MAXCCALLS)
500 L->nCcalls--;
658 L->nCcalls = (from) ? from->nCcalls + 1 : 1;
659 if (L->nCcalls >= LUAI_MAXCCALLS)
680 L->nCcalls
[all...]
H A Dlstate.h199 unsigned short nCcalls; /* number of nested C calls */ member in struct:lua_State
H A Dlparser.c333 ++L->nCcalls;
334 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels");
338 #define leavelevel(ls) ((ls)->L->nCcalls--)
1156 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS,
H A Dlstate.c229 L->nCcalls = 0;

Completed in 239 milliseconds