Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dldo.c560 static l_noret resume_error (lua_State *L, const char *msg, StkId firstArg) { in resume_error() argument
561 L->top = firstArg; /* remove args from the stack */ in resume_error()
573 StkId firstArg = cast(StkId, ud); in resume_cb() local
576 resume_error(L, "C stack overflow", firstArg); in resume_cb()
579 resume_error(L, "cannot resume non-suspended coroutine", firstArg); in resume_cb()
581 if (!luaD_precall(L, firstArg - 1, LUA_MULTRET)) /* Lua function? */ in resume_cb()
585 resume_error(L, "cannot resume dead coroutine", firstArg); in resume_cb()
600 firstArg = L->top - n; /* yield results come from continuation */ in resume_cb()
602 luaD_poscall(L, firstArg); /* finish 'luaD_precall' */ in resume_cb()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dldo.c385 StkId firstArg = cast(StkId, ud); in resume() local
388 lua_assert(ci == L->base_ci && firstArg > L->base); in resume()
389 if (luaD_precall(L, firstArg - 1, LUA_MULTRET) != PCRLUA) in resume()
399 if (luaD_poscall(L, firstArg)) /* complete it... */ in resume()