Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dldo.h33 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
H A Dldo.c366 int luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall() function
426 return luaD_precall(L, func, nresults); /* now it must be a function */ in luaD_precall()
476 if (!luaD_precall(L, func, nResults)) /* is a Lua function? */ in luaD_call()
581 if (!luaD_precall(L, firstArg - 1, LUA_MULTRET)) /* Lua function? */ in resume_cb()
H A Dlvm.c777 if (luaD_precall(L, ra, nresults)) { /* C function? */ in luaV_execute()
791 if (luaD_precall(L, ra, LUA_MULTRET)) /* C function? */ in luaV_execute()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dldo.h42 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
H A Dldo.c265 int luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall() function
377 if (luaD_precall(L, func, nResults) == PCRLUA) /* is a Lua function? */ in luaD_call()
389 if (luaD_precall(L, firstArg - 1, LUA_MULTRET) != PCRLUA) in resume()
H A Dlvm.c591 switch (luaD_precall(L, ra, nresults)) { in luaV_execute()
612 switch (luaD_precall(L, ra, LUA_MULTRET)) { in luaV_execute()