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

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/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 296 int luaD_precall (lua_State *L, StkId func, int nresults) {
310 ci->nresults = (short)nresults;
341 ci->nresults = (short)nresults;
356 return luaD_precall(L, func, nresults); /* now it must be a function */
375 wanted = ci->nresults;
393 void luaD_call (lua_State *L, StkId func, int nResults, int allowyield) {
401 if (!luaD_precall(L, func, nResults)) /* is a Lua function? */
418 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...]
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/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
  /external/syslinux/com32/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 296 int luaD_precall (lua_State *L, StkId func, int nresults) {
310 ci->nresults = nresults;
341 ci->nresults = nresults;
356 return luaD_precall(L, func, nresults); /* now it must be a function */
375 wanted = ci->nresults;
393 void luaD_call (lua_State *L, StkId func, int nResults, int allowyield) {
401 if (!luaD_precall(L, func, nResults)) /* is a Lua function? */
418 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 256 LUA_API void (lua_callk) (lua_State *L, int nargs, int nresults, int ctx,
262 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
276 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
  /device/linaro/bootloader/edk2/StdLib/Include/Lua/
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,
  /external/pdfium/core/fpdfapi/page/
pageint.h 39 int& nresults) const;
cpdf_colorspace.cpp 1199 int nresults = 0; local
1259 int nresults = 0; local
    [all...]
fpdf_page_func.cpp 729 int nresults; local
730 m_pSubFunctions[i]->Call(&input, kRequiredNumInputs, outputs, nresults);
823 int& nresults) const {
827 nresults = m_nOutputs;

Completed in 282 milliseconds

1 2