Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlobject.h50 #define LUA_TLCL (LUA_TFUNCTION | (0 << 4)) /* Lua closure */ macro
144 #define ttisLclosure(o) checktag((o), ctb(LUA_TLCL))
223 val_(io).gc=cast(GCObject *, (x)); settt_(io, ctb(LUA_TLCL)); \
Dlstate.h205 #define gco2lcl(o) check_exp((o)->gch.tt == LUA_TLCL, &((o)->cl.l))
Dlfunc.c31 Closure *c = &luaC_newobj(L, LUA_TLCL, sizeLclosure(n), NULL, 0)->cl; in luaF_newLclosure()
Dlgc.c267 case LUA_TLCL: { in reallymarkobject()
533 case LUA_TLCL: { in propagatemark()
666 case LUA_TLCL: { in freeobj()
Dlapi.c447 case LUA_TLCL: return clLvalue(o); in lua_topointer()
1201 case LUA_TLCL: { /* Lua closure */ in aux_upvalue()
1263 case LUA_TLCL: { /* lua closure */ in lua_upvalueid()
Dldo.c325 case LUA_TLCL: { /* Lua function: prepare its call */ in luaD_precall()