Searched refs:lua_createtable (Results 1 – 10 of 10) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | loadlib.c | 607 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()
|
D | ltablib.c | 121 lua_createtable(L, n, 1); /* create result table */ in pack()
|
D | loslib.c | 208 lua_createtable(L, 0, 9); /* 9 = number of fields */ in os_date()
|
D | ldblib.c | 133 lua_createtable(L, 0, 2); in db_getinfo()
|
D | lua.c | 201 lua_createtable(L, narg, n + 1); in getargs()
|
D | lauxlib.c | 778 lua_createtable(L, 0, (*e == '.' ? 1 : szhint)); /* new table for field */ in luaL_findtable()
|
D | lstrlib.c | 1000 lua_createtable(L, 0, 1); /* table to be metatable for strings */ in createmetatable()
|
D | lapi.c | 673 LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { in lua_createtable() function
|
/device/linaro/bootloader/edk2/StdLib/Include/Lua/ |
D | lua.h | 229 LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec); variable 325 #define lua_newtable(L) lua_createtable(L, 0, 0)
|
D | lauxlib.h | 109 lua_createtable(L, 0, sizeof(l)/sizeof((l)[0]) - 1)
|