Searched refs:firstResult (Results 1 – 4 of 4) sorted by relevance
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | ldo.c | 332 static StkId callrethooks (lua_State *L, StkId firstResult) { in callrethooks() argument 333 ptrdiff_t fr = savestack(L, firstResult); /* next call may change stack */ in callrethooks() 343 int luaD_poscall (lua_State *L, StkId firstResult) { in luaD_poscall() argument 348 firstResult = callrethooks(L, firstResult); in luaD_poscall() 355 for (i = wanted; i != 0 && firstResult < L->top; i--) in luaD_poscall() 356 setobjs2s(L, res++, firstResult++); in luaD_poscall()
|
| H A D | ldo.h | 46 LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult);
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | ldo.h | 38 LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult);
|
| H A D | ldo.c | 432 int luaD_poscall (lua_State *L, StkId firstResult) { in luaD_poscall() argument 438 ptrdiff_t fr = savestack(L, firstResult); /* hook may change stack */ in luaD_poscall() 440 firstResult = restorestack(L, fr); in luaD_poscall() 448 for (i = wanted; i != 0 && firstResult < L->top; i--) in luaD_poscall() 449 setobjs2s(L, res++, firstResult++); in luaD_poscall()
|