Searched refs:firstArg (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dldo.c495 static l_noret resume_error (lua_State *L, const char *msg, StkId firstArg) { argument
496 L->top = firstArg; /* remove args from the stack */
508 StkId firstArg = cast(StkId, ud); local
511 resume_error(L, "C stack overflow", firstArg);
514 resume_error(L, "cannot resume non-suspended coroutine", firstArg);
516 if (!luaD_precall(L, firstArg - 1, LUA_MULTRET)) /* Lua function? */
520 resume_error(L, "cannot resume dead coroutine", firstArg);
535 firstArg = L->top - n; /* yield results come from continuation */
537 luaD_poscall(L, firstArg); /* finish 'luaD_precall' */
/freebsd-12-stable/contrib/lua/src/
H A Dldo.c621 StkId firstArg = L->top - n; /* first argument */ local
624 if (!luaD_precall(L, firstArg - 1, LUA_MULTRET)) /* Lua function? */
639 firstArg = L->top - n; /* yield results come from continuation */
641 luaD_poscall(L, ci, firstArg, n); /* finish 'luaD_precall' */

Completed in 127 milliseconds