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

  /external/chromium_org/third_party/skia/third_party/lua/src/
ldo.h 32 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
33 LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults,
ldo.c 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);
    [all...]
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...]
lua.h 251 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,
lcode.h 67 LUAI_FUNC void luaK_setreturns (FuncState *fs, expdesc *e, int nresults);
lstate.h 73 short nresults; /* expected number of results from this function */ member in struct:CallInfo
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
lvm.c 468 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/
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...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
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;
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...]
pageint.h 444 FX_BOOL Call(FX_FLOAT* inputs, int ninputs, FX_FLOAT* results, int& nresults) const;

Completed in 121 milliseconds