Searched refs:narg (Results 1 – 4 of 4) sorted by relevance
/l4re-core-master/lua/lib/contrib/src/ |
A D | lcorolib.c | 32 static int auxresume (lua_State *L, lua_State *co, int narg) { in auxresume() argument 34 if (l_unlikely(!lua_checkstack(co, narg))) { in auxresume() 38 lua_xmove(L, co, narg); in auxresume() 39 status = lua_resume(co, L, narg, &nres); in auxresume()
|
A D | lua.c | 152 static int docall (lua_State *L, int narg, int nres) { in docall() argument 154 int base = lua_gettop(L) - narg; /* function index */ in docall() 159 status = lua_pcall(L, narg, nres, base); in docall() 181 int i, narg; in createargtable() local 183 narg = argc - (script + 1); /* number of positive indices */ in createargtable() 184 lua_createtable(L, narg, script + 1); in createargtable()
|
A D | ldo.c | 528 int narg = cast_int(L->top - func) - 1; in luaD_precall() local 529 luaD_hook(L, LUA_HOOKCALL, -1, 1, narg); in luaD_precall() 541 int narg = cast_int(L->top - func) - 1; /* number of real arguments */ in luaD_precall() local 551 for (; narg < nfixparams; narg++) in luaD_precall() 710 static int resume_error (lua_State *L, const char *msg, int narg) { in resume_error() argument 711 L->top -= narg; /* remove args from the stack */ in resume_error()
|
A D | lua.h | 300 LUA_API int (lua_resume) (lua_State *L, lua_State *from, int narg,
|
Completed in 10 milliseconds