Home
last modified time | relevance | path

Searched refs:lua_settop (Results 1 – 11 of 11) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlbaselib.c91 lua_settop(L, 1); in luaB_error()
119 lua_settop(L, 2); in luaB_setmetatable()
145 lua_settop(L, 2); in luaB_rawget()
154 lua_settop(L, 3); in luaB_rawset()
215 lua_settop(L, 2); /* create a 2nd argument if there isn't one */ in luaB_next()
322 lua_settop(L, RESERVEDSLOT); /* create reserved slot */ in luaB_load()
338 lua_settop(L, 1); in luaB_dofile()
371 lua_settop(L, 0); /* create space for return values */ in finishpcall()
Dldblib.c44 lua_settop(L, 2); in db_setmetatable()
65 lua_settop(L, 2); in db_setuservalue()
198 lua_settop(L, arg+3); in db_setlocal()
301 lua_settop(L, arg+1); in db_sethook()
354 lua_settop(L, 0); /* remove eventual returns */ in db_debug()
Dlua.c283 lua_settop(L, 0); in loadline()
320 lua_settop(L, 0); /* clear stack */ in dotty()
Dltablib.c252 lua_settop(L, 2); /* make sure there is two arguments */ in sort()
Dliolib.c490 lua_settop(L , 1); in io_readline()
503 lua_settop(L, 0); in io_readline()
Dloslib.c248 lua_settop(L, 1); /* make sure table is at the top */ in os_time()
Dlauxlib.c77 lua_settop(L, top); /* remove function and global table */ in pushglobalfuncname()
658 lua_settop(L, fnameindex); /* ignore results from `lua_load' */ in luaL_loadfilex()
Dlstrlib.c177 lua_settop(L, 1); in str_dump()
671 lua_settop(L, 2); in gmatch()
Dloadlib.c510 lua_settop(L, 1); /* _LOADED table will be at index 2 */ in ll_require()
Dlapi.c165 LUA_API void lua_settop (lua_State *L, int idx) { in lua_settop() function
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlua.h146 LUA_API void (lua_settop) (lua_State *L, int idx); variable
323 #define lua_pop(L,n) lua_settop(L, -(n)-1)