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

/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dldo.h32 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
H A Dldo.c295 int luaD_precall (lua_State *L, StkId func, int nresults) { argument
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;
411 adjustresults(L, ci->nresults);
559 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) { argument
561 luai_userstateyield(L, nresults);
[all...]
H A Dlapi.c889 LUA_API void lua_callk (lua_State *L, int nargs, int nresults, int ctx, argument
897 checkresults(L, nargs, nresults);
902 luaD_call(L, func, nresults, 1); /* do the call */
905 luaD_call(L, func, nresults, 0); /* just do the call */
906 adjustresults(L, nresults);
917 int nresults; member in struct:CallS
923 luaD_call(L, c->func, c->nresults, 0);
928 LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, argument
938 checkresults(L, nargs, nresults);
948 c.nresults
[all...]
H A Dlua.h251 LUA_API void (lua_callk) (lua_State *L, int nargs, int nresults, int ctx,
257 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
271 LUA_API int (lua_yieldk) (lua_State *L, int nresults, int ctx,
H A Dlcode.h67 LUAI_FUNC void luaK_setreturns (FuncState *fs, expdesc *e, int nresults);
H A Dlstate.h73 short nresults; /* expected number of results from this function */ member in struct:CallInfo
H A Dlcode.c359 void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) { argument
361 SETARG_C(getcode(fs, e), nresults+1); local
364 SETARG_B(getcode(fs, e), nresults+1); local
H A Dlvm.c468 if (GETARG_C(inst) - 1 >= 0) /* nresults >= 0? */
711 int nresults = GETARG_C(i) - 1;
713 if (luaD_precall(L, ra, nresults)) { /* C function? */
714 if (nresults >= 0) L->top = ci->top; /* adjust results */
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_pattern.cpp63 int nresults = 0; local
64 if (pFuncs[j]->Call(&input, 1, pResults + offset, nresults)) {
65 offset += nresults;
144 int nresults; local
145 if (pFuncs[j]->Call(&input, 1, pResults + offset, nresults)) {
146 offset += nresults;
275 int nresults; local
276 if (pFuncs[j]->Call(input, 2, pResults + offset, nresults)) {
277 offset += nresults;
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_func.cpp772 int nresults; local
773 m_pSubFunctions[i]->Call(&input, m_nInputs, outputs, nresults);
862 FX_BOOL CPDF_Function::Call(FX_FLOAT* inputs, int ninputs, FX_FLOAT* results, int& nresults) const
867 nresults = m_nOutputs;
H A Dfpdf_page_colors.cpp946 int nresults; local
947 m_pFunc->Call(pBuf, 1, results, nresults);
948 if (nresults == 0) {
1028 int nresults; local
1029 m_pFunc->Call(pBuf, m_nComponents, results, nresults);
1030 if (nresults == 0) {
H A Dpageint.h444 FX_BOOL Call(FX_FLOAT* inputs, int ninputs, FX_FLOAT* results, int& nresults) const;

Completed in 681 milliseconds