Home
last modified time | relevance | path

Searched refs:lua_createtable (Results 1 – 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dloadlib.c607 lua_createtable(L, 0, 1); /* create new metatable */ in ll_seeall()
680 lua_createtable(L, sizeof(searchers)/sizeof(searchers[0]) - 1, 0); in createsearcherstable()
693 lua_createtable(L, 0, 1); /* metatable for CLIBS */ in luaopen_package()
Dltablib.c121 lua_createtable(L, n, 1); /* create result table */ in pack()
Dloslib.c208 lua_createtable(L, 0, 9); /* 9 = number of fields */ in os_date()
Dldblib.c133 lua_createtable(L, 0, 2); in db_getinfo()
Dlua.c201 lua_createtable(L, narg, n + 1); in getargs()
Dlauxlib.c778 lua_createtable(L, 0, (*e == '.' ? 1 : szhint)); /* new table for field */ in luaL_findtable()
Dlstrlib.c1000 lua_createtable(L, 0, 1); /* table to be metatable for strings */ in createmetatable()
Dlapi.c673 LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { in lua_createtable() function
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlua.h229 LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec); variable
325 #define lua_newtable(L) lua_createtable(L, 0, 0)
Dlauxlib.h109 lua_createtable(L, 0, sizeof(l)/sizeof((l)[0]) - 1)