Home
last modified time | relevance | path

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

/external/lua/src/
Dlobject.h73 #define rawtt(o) ((o)->tt_) macro
80 #define ttypetag(o) withvariant(rawtt(o))
83 #define ttype(o) (novariant(rawtt(o)))
87 #define checktag(o,t) (rawtt(o) == (t))
276 #define iscollectable(o) (rawtt(o) & BIT_ISCOLLECTABLE)
571 #define ttisclosure(o) ((rawtt(o) & 0x1F) == LUA_VLCL)
Dltable.c164 return mainposition(t, rawtt(key), valraw(key)); in mainpositionTV()
177 if (rawtt(k1) != keytt(n2)) /* not the same variants? */ in equalkey()