Searched refs:luaD_precall (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | ldo.h | 32 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
|
H A D | ldo.c | 379 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 D | lvm.c | 776 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 D | ldo.h | 71 LUAI_FUNC CallInfo *luaD_precall (lua_State *L, StkId func, int nResults);
|
H A D | ldo.c | 588 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 D | lvm.c | 1688 if ((newci = luaD_precall(L, ra, nresults)) == NULL) in luaV_execute()
|