Searched defs:nresults (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/skia/third_party/lua/src/
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 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 Dlstate.h73 short nresults; /* expected number of results from this function */ member in struct:CallInfo
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...]
/external/pdfium/core/src/fpdfapi/fpdf_page/
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 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;
/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;

Completed in 118 milliseconds