Home
last modified time | relevance | path

Searched refs:rttype (Results 1 – 2 of 2) sorted by relevance

/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
HDlobject.h117 #define rttype(o) ((o)->tt_) macro
123 #define ttype(o) (rttype(o) & 0x3F)
126 #define ttypenv(o) (novariant(rttype(o)))
130 #define checktag(o,t) (rttype(o) == (t))
141 #define ttisclosure(o) ((rttype(o) & 0x1F) == LUA_TFUNCTION)
149 #define ttisequal(o1,o2) (rttype(o1) == rttype(o2))
172 #define iscollectable(o) (rttype(o) & BIT_ISCOLLECTABLE)
341 #undef rttype
342 #define rttype(o) (ttisnumber(o) ? LUA_TNUMBER : tt_(o) & 0xff) macro
/freebsd-11-stable/contrib/lua/src/
HDlobject.h127 #define rttype(o) ((o)->tt_) macro
133 #define ttype(o) (rttype(o) & 0x3F)
136 #define ttnov(o) (novariant(rttype(o)))
140 #define checktag(o,t) (rttype(o) == (t))
153 #define ttisclosure(o) ((rttype(o) & 0x1F) == LUA_TFUNCTION)
184 #define iscollectable(o) (rttype(o) & BIT_ISCOLLECTABLE)
373 iu->user_ = io->value_; iu->ttuv_ = rttype(io); \