Home | History | Annotate | Download | only in src

Lines Matching refs:nresults

295 int luaD_precall (lua_State *L, StkId func, int nresults) {
309 ci->nresults = nresults;
334 ci->nresults = nresults;
349 return luaD_precall(L, func, nresults); /* now it must be a function */
368 wanted = ci->nresults;
386 void luaD_call (lua_State *L, StkId func, int nResults, int allowyield) {
394 if (!luaD_precall(L, func, nResults)) /* is a Lua function? */
411 adjustresults(L, ci->nresults);
559 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) {
561 luai_userstateyield(L, nresults);
563 api_checknelems(L, nresults);
578 ci->func = L->top - nresults - 1; /* protect stack below results */