Home
last modified time | relevance | path

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

/external/lua/src/
Dlobject.h47 #define LUA_TLCL (LUA_TFUNCTION | (0 << 4)) /* Lua closure */ macro
155 #define ttisLclosure(o) checktag((o), ctb(LUA_TLCL))
242 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_TLCL)); \
Dlstate.h228 #define gco2lcl(o) check_exp((o)->tt == LUA_TLCL, &((cast_u(o))->cl.l))
Dlfunc.c34 GCObject *o = luaC_newobj(L, LUA_TLCL, sizeLclosure(n)); in luaF_newLclosure()
Dlgc.c261 case LUA_TLCL: { in reallymarkobject()
571 case LUA_TLCL: { in propagatemark()
700 case LUA_TLCL: { in freeobj()
Dlapi.c433 case LUA_TLCL: return clLvalue(o); in lua_topointer()
1207 case LUA_TLCL: { /* Lua closure */ in aux_upvalue()
1271 case LUA_TLCL: { /* lua closure */ in lua_upvalueid()
Dldo.c440 case LUA_TLCL: { /* Lua function: prepare its call */ in luaD_precall()