HomeSort by: relevance | last modified time | path
    Searched refs:getCcalls (Results 1 - 3 of 3) sorted by relevancy

  /src/external/mit/lua/dist/src/
lstate.c 163 ** Called when 'getCcalls(L)' larger or equal to LUAI_MAXCCALLS.
170 if (getCcalls(L) == LUAI_MAXCCALLS)
172 else if (getCcalls(L) >= (LUAI_MAXCCALLS / 10 * 11))
179 if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS))
349 L->nCcalls = (from) ? getCcalls(from) : 0;
lstate.h 109 #define getCcalls(L) ((L)->nCcalls & 0xffff)
ldo.c 635 if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) {
847 L->nCcalls = (from) ? getCcalls(from) : 0;
848 if (getCcalls(L) >= LUAI_MAXCCALLS)

Completed in 20 milliseconds