Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlobject.h116 #define rttype(o) ((o)->tt_) macro
122 #define ttype(o) (rttype(o) & 0x3F)
125 #define ttypenv(o) (novariant(rttype(o)))
129 #define checktag(o,t) (rttype(o) == (t))
140 #define ttisclosure(o) ((rttype(o) & 0x1F) == LUA_TFUNCTION)
148 #define ttisequal(o1,o2) (rttype(o1) == rttype(o2))
171 #define iscollectable(o) (rttype(o) & BIT_ISCOLLECTABLE)
340 #undef rttype
341 #define rttype(o) (ttisnumber(o) ? LUA_TNUMBER : tt_(o) & 0xff) macro