HomeSort by relevance Sort by last modified time
    Searched defs:nresults (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
lcode.c 359 void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) {
361 SETARG_C(getcode(fs, e), nresults+1); local
364 SETARG_B(getcode(fs, e), nresults+1); local
lapi.c 889 LUA_API void lua_callk (lua_State *L, int nargs, int nresults, int ctx,
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,
938 checkresults(L, nargs, nresults);
948 c.nresults = nresults; /* do a 'conventional' protected call *
    [all...]
lstate.h 73 short nresults; /* expected number of results from this function */ member in struct:CallInfo
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_colors.cpp 946 int nresults; local
947 m_pFunc->Call(pBuf, 1, results, nresults);
948 if (nresults == 0) {
1028 int nresults; local
    [all...]
fpdf_page_func.cpp 772 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/
fpdf_render_pattern.cpp 63 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;
    [all...]

Completed in 299 milliseconds