Home
last modified time | relevance | path

Searched refs:getCcalls (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/lua/src/
H A Dlstate.c166 if (getCcalls(L) == LUAI_MAXCCALLS) in luaE_checkcstack()
168 else if (getCcalls(L) >= (LUAI_MAXCCALLS / 10 * 11)) in luaE_checkcstack()
175 if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) in luaE_incCstack()
345 L->nCcalls = (from) ? getCcalls(from) : 0; in lua_closethread()
H A Dlstate.h107 #define getCcalls(L) ((L)->nCcalls & 0xffff) macro
H A Dldo.c631 if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) { in ccall()
843 L->nCcalls = (from) ? getCcalls(from) : 0; in lua_resume()
844 if (getCcalls(L) >= LUAI_MAXCCALLS) in lua_resume()