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

/barrelfish-master/lib/libc/iconv/
H A Dcitrus_iconv.h57 uint32_t flags, size_t * __restrict nresults)
61 outbytes, flags, nresults);
54 _citrus_iconv_convert(struct _citrus_iconv * __restrict cv, char * __restrict * __restrict in, size_t * __restrict inbytes, char * __restrict * __restrict out, size_t * __restrict outbytes, uint32_t flags, size_t * __restrict nresults) argument
/barrelfish-master/lib/lua/src/
H A Dldo.h32 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
H A Dldo.c296 int luaD_precall (lua_State *L, StkId func, int nresults) { argument
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;
418 adjustresults(L, ci->nresults);
567 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) { argument
569 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 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 */
/barrelfish-master/include/lua/
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,

Completed in 51 milliseconds