Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlobject.h48 #define LUA_TLCL (LUA_TFUNCTION | (0 << 4)) /* Lua closure */ macro
142 #define ttisLclosure(o) checktag((o), ctb(LUA_TLCL))
221 val_(io).gc=cast(GCObject *, (x)); settt_(io, ctb(LUA_TLCL)); \
H A Dlstate.h207 #define gco2lcl(o) check_exp((o)->gch.tt == LUA_TLCL, &((o)->cl.l))
H A Dlfunc.c30 Closure *c = &luaC_newobj(L, LUA_TLCL, sizeLclosure(n), NULL, 0)->cl; in luaF_newLclosure()
H A Dlgc.c266 case LUA_TLCL: { in reallymarkobject()
532 case LUA_TLCL: { in propagatemark()
665 case LUA_TLCL: { in freeobj()
H A Dlapi.c444 case LUA_TLCL: return clLvalue(o); in lua_topointer()
1195 case LUA_TLCL: { /* Lua closure */ in aux_upvalue()
1257 case LUA_TLCL: { /* lua closure */ in lua_upvalueid()
H A Dldo.c395 case LUA_TLCL: { /* Lua function: prepare its call */ in luaD_precall()