Home
last modified time | relevance | path

Searched refs:nResults (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/lua/src/
H A Dldo.h71 LUAI_FUNC CallInfo *luaD_precall (lua_State *L, StkId func, int nResults);
72 LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults);
73 LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults);
H A Dldo.c628 l_sinline void ccall (lua_State *L, StkId func, int nResults, l_uint32 inc) { in ccall() argument
635 if ((ci = luaD_precall(L, func, nResults)) != NULL) { /* Lua function? */ in ccall()
646 void luaD_call (lua_State *L, StkId func, int nResults) { in luaD_call() argument
647 ccall(L, func, nResults, 1); in luaD_call()
654 void luaD_callnoyield (lua_State *L, StkId func, int nResults) { in luaD_callnoyield() argument
655 ccall(L, func, nResults, nyci); in luaD_callnoyield()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dldo.h33 LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults,
H A Dldo.c476 void luaD_call (lua_State *L, StkId func, int nResults, int allowyield) { in luaD_call() argument
489 if (!luaD_precall(L, func, nResults)) /* is a Lua function? */ in luaD_call()