Searched refs:rttype (Results 1 – 2 of 2) sorted by relevance
118 #define rttype(o) ((o)->tt_) macro124 #define ttype(o) (rttype(o) & 0x3F)127 #define ttypenv(o) (novariant(rttype(o)))131 #define checktag(o,t) (rttype(o) == (t))142 #define ttisclosure(o) ((rttype(o) & 0x1F) == LUA_TFUNCTION)150 #define ttisequal(o1,o2) (rttype(o1) == rttype(o2))173 #define iscollectable(o) (rttype(o) & BIT_ISCOLLECTABLE)342 #undef rttype343 #define rttype(o) (ttisnumber(o) ? LUA_TNUMBER : tt_(o) & 0xff) macro