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

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dldo.c485 static l_noret resume_error (lua_State *L, const char *msg, StkId firstArg) { argument
486 L->top = firstArg; /* remove args from the stack */
498 StkId firstArg = cast(StkId, ud); local
501 resume_error(L, "C stack overflow", firstArg);
504 resume_error(L, "cannot resume non-suspended coroutine", firstArg);
506 if (!luaD_precall(L, firstArg - 1, LUA_MULTRET)) /* Lua function? */
510 resume_error(L, "cannot resume dead coroutine", firstArg);
525 firstArg = L->top - n; /* yield results come from continuation */
527 luaD_poscall(L, firstArg); /* finish 'luaD_precall' */

Completed in 953 milliseconds