Home
last modified time | relevance | path

Searched refs:luaL_optint (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dltablib.c70 int pos = luaL_optint(L, 2, size); in tremove()
99 i = luaL_optint(L, 3, 1); in tconcat()
139 i = luaL_optint(L, 2, 1); in unpack()
Dlbaselib.c90 int level = luaL_optint(L, 2, 1); in luaB_error()
168 int ex = luaL_optint(L, 2, 0); in luaB_collectgarbage()
Dldblib.c307 count = luaL_optint(L, arg+3, 0); in db_sethook()
366 int level = luaL_optint(L, arg + 2, (L == L1) ? 1 : 0); in db_traceback()
Dlbitlib.c157 int w = luaL_optint(L, farg + 1, 1); in fieldargs()
Dloslib.c292 status = luaL_optint(L, 1, EXIT_SUCCESS); in os_exit()
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlauxlib.h118 #define luaL_optint(L,n,d) ((int)luaL_optinteger(L, (n), (d))) macro