Home
last modified time | relevance | path

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

/netbsd-src/external/mit/lua/dist/src/
H A Dlstate.c170 if (getCcalls(L) == LUAI_MAXCCALLS) in luaE_checkcstack()
172 else if (getCcalls(L) >= (LUAI_MAXCCALLS / 10 * 11)) in luaE_checkcstack()
179 if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) in luaE_incCstack()
349 L->nCcalls = (from) ? getCcalls(from) : 0; in lua_closethread()
H A Dldo.c635 if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) { in ccall()
847 L->nCcalls = (from) ? getCcalls(from) : 0; in lua_resume()
848 if (getCcalls(L) >= LUAI_MAXCCALLS) in lua_resume()
H A Dlstate.h109 #define getCcalls(L) ((L)->nCcalls & 0xffff) macro