Searched refs:rttype (Results 1 – 2 of 2) sorted by relevance
117 #define rttype(o) ((o)->tt_) macro123 #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 rttype342 #define rttype(o) (ttisnumber(o) ? LUA_TNUMBER : tt_(o) & 0xff) macro
127 #define rttype(o) ((o)->tt_) macro133 #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); \