Searched refs:lua_gettop (Results 1 – 17 of 17) sorted by relevance
/l4re-core-master/ned/server/src/ |
A D | lua.cc | 86 lua_pop(l, lua_gettop(l)); in execute_lua_buf() 93 lua_pop(l, lua_gettop(l)); in execute_lua_buf() 97 lua_pop(l, lua_gettop(l)); in execute_lua_buf() 145 lua_pop(_lua, lua_gettop(_lua)); in op_execute() 255 lua_pop(L, lua_gettop(L)); in lua()
|
A D | lua_sleep.cc | 21 if (lua_gettop(l) >= 1 && !lua_isnil(l, 1) in sleep() 33 if (lua_gettop(l) >= 1 && !lua_isnil(l, 1) in msleep()
|
A D | lua_cap.cc | 110 if (lua_gettop(l) >= 2 && !lua_isnil(l, 2)) in __set_mode_call() 272 int const frame = lua_gettop(l); in push_new_cap() 312 if (lua_gettop(l) > 2) in __cast()
|
A D | lua_exec.cc | 155 : Rmt_app_model(), _lua(l), _argc(lua_gettop(l)), _env_idx(0), _cfg_idx(1), in Am() 168 int tab = lua_gettop(_lua); in push_initial_caps() 202 int tab = lua_gettop(_lua); in map_initial_caps()
|
A D | lua_factory.cc | 47 int argc = lua_gettop(l); in __alloc()
|
A D | lua_ns.cc | 71 int argc = lua_gettop(l); in __query()
|
/l4re-core-master/lua/lib/contrib/src/ |
A D | lbaselib.c | 25 int n = lua_gettop(L); /* number of arguments */ in luaB_print() 46 int n = lua_gettop(L); /* number of arguments */ in luaB_warn() 390 return lua_gettop(L) - 1; in dofilecont() 406 return lua_gettop(L); /* return all arguments */ in luaB_assert() 418 int n = lua_gettop(L); in luaB_select() 447 return lua_gettop(L) - (int)extra; /* return all results */ in finishpcall() 456 status = lua_pcallk(L, lua_gettop(L) - 2, LUA_MULTRET, 0, 0, finishpcall); in luaB_pcall() 468 int n = lua_gettop(L); in luaB_xpcall()
|
A D | lcorolib.c | 59 r = auxresume(L, co, lua_gettop(L) - 1); in luaB_coresume() 75 int r = auxresume(L, co, lua_gettop(L)); in luaB_auxwrap() 113 return lua_yield(L, lua_gettop(L)); in luaB_yield() 137 else if (lua_gettop(co) == 0) in auxstatus()
|
A D | lua.c | 154 int base = lua_gettop(L) - narg; /* function index */ in docall() 552 lua_assert(lua_gettop(L) == 1); in loadline() 561 int n = lua_gettop(L); in l_print()
|
A D | lmathlib.c | 207 int n = lua_gettop(L); /* number of arguments */ in math_min() 221 int n = lua_gettop(L); /* number of arguments */ in math_max() 562 switch (lua_gettop(L)) { /* check number of arguments */ in math_random()
|
A D | ltablib.c | 64 switch (lua_gettop(L)) { in tinsert() 182 int n = lua_gettop(L); /* number of elements to pack */ in tpack()
|
A D | liolib.c | 364 int n = lua_gettop(L) - 1; /* number of arguments to read */ in aux_lines() 567 int nargs = lua_gettop(L) - 1; in g_read() 661 int nargs = lua_gettop(L) - arg; in g_write()
|
A D | lutf8lib.c | 162 int n = lua_gettop(L); /* number of arguments */ in utfchar()
|
A D | lauxlib.c | 80 int top = lua_gettop(L); in pushglobalfuncname() 781 int fnameindex = lua_gettop(L) + 1; /* index of filename on the stack */ in luaL_loadfilex()
|
A D | lua.h | 168 LUA_API int (lua_gettop) (lua_State *L); variable
|
A D | lstrlib.c | 196 int n = lua_gettop(L); /* number of arguments */ in str_char() 1228 int top = lua_gettop(L); in str_format()
|
A D | lapi.c | 169 LUA_API int lua_gettop (lua_State *L) { in lua_gettop() function
|
Completed in 26 milliseconds