Home
last modified time | relevance | path

Searched refs:LUA_TCCL (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlobject.h51 #define LUA_TCCL (LUA_TFUNCTION | (2 << 4)) /* C closure */ macro
142 #define ttisCclosure(o) checktag((o), ctb(LUA_TCCL))
227 val_(io).gc=cast(GCObject *, (x)); settt_(io, ctb(LUA_TCCL)); \
H A Dlstate.h206 #define gco2ccl(o) check_exp((o)->gch.tt == LUA_TCCL, &((o)->cl.c))
H A Dlfunc.c24 Closure *c = &luaC_newobj(L, LUA_TCCL, sizeCclosure(n), NULL, 0)->cl; in luaF_newCclosure()
H A Dlgc.c272 case LUA_TCCL: { in reallymarkobject()
539 case LUA_TCCL: { in propagatemark()
670 case LUA_TCCL: { in freeobj()
H A Dlapi.c447 case LUA_TCCL: return clCvalue(o); in lua_topointer()
1190 case LUA_TCCL: { /* C closure */ in aux_upvalue()
1262 case LUA_TCCL: { /* C closure */ in lua_upvalueid()
H A Dldebug.c30 #define noLuaClosure(f) ((f) == NULL || (f)->c.tt == LUA_TCCL)
H A Dldo.c309 case LUA_TCCL: { /* C closure */ in luaD_precall()