Home
last modified time | relevance | path

Searched refs:luaD_precall (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/contrib/openzfs/module/lua/
H A Dldo.h32 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
H A Dldo.c379 int luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall() function
439 return luaD_precall(L, func, nresults); /* now it must be a function */ in luaD_precall()
489 if (!luaD_precall(L, func, nResults)) /* is a Lua function? */ in luaD_call()
594 if (!luaD_precall(L, firstArg - 1, LUA_MULTRET)) /* Lua function? */ in resume_cb()
H A Dlvm.c776 if (luaD_precall(L, ra, nresults)) { /* C function? */ in luaV_execute()
790 if (luaD_precall(L, ra, LUA_MULTRET)) /* C function? */ in luaV_execute()
/freebsd/contrib/lua/src/
H A Dldo.h71 LUAI_FUNC CallInfo *luaD_precall (lua_State *L, StkId func, int nResults);
H A Dldo.c588 CallInfo *luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall() function
635 if ((ci = luaD_precall(L, func, nResults)) != NULL) { /* Lua function? */ in ccall()
H A Dlvm.c1688 if ((newci = luaD_precall(L, ra, nresults)) == NULL) in luaV_execute()