tt                 68 lib/lua/lfunc.c   uv->tt = LUA_TUPVAL;
tt                 72 lib/lua/lgc.c    switch (o->gch.tt) {
tt                281 lib/lua/lgc.c    switch (o->gch.tt) {
tt                379 lib/lua/lgc.c    switch (o->gch.tt) {
tt                412 lib/lua/lgc.c      if (curr->gch.tt == LUA_TTHREAD)  /* sweep open upvalues of each thread */
tt                685 lib/lua/lgc.c  LUAI_FUNC void luaC_link (lua_State *L, GCObject *o, lu_byte tt) {
tt                690 lib/lua/lgc.c    o->gch.tt = tt;
tt                104 lib/lua/lgc.h  LUAI_FUNC void luaC_link (lua_State *L, GCObject *o, lu_byte tt);
tt                 43 lib/lua/lobject.h #define CommonHeader	GCObject *next; lu_byte tt; lu_byte marked
tt                 71 lib/lua/lobject.h #define TValuefields	Value value; int tt
tt                 90 lib/lua/lobject.h #define ttype(o)	((o)->tt)
tt                109 lib/lua/lobject.h   lua_assert(!iscollectable(obj) || (ttype(obj) == (obj)->value.gc->gch.tt))
tt                113 lib/lua/lobject.h   ((ttype(obj) == (obj)->value.gc->gch.tt) && !isdead(g, (obj)->value.gc)))
tt                117 lib/lua/lobject.h #define setnilvalue(obj) ((obj)->tt=LUA_TNIL)
tt                120 lib/lua/lobject.h   { TValue *i_o=(obj); i_o->value.n=(x); i_o->tt=LUA_TNUMBER; }
tt                123 lib/lua/lobject.h   { TValue *i_o=(obj); i_o->value.p=(x); i_o->tt=LUA_TLIGHTUSERDATA; }
tt                126 lib/lua/lobject.h   { TValue *i_o=(obj); i_o->value.b=(x); i_o->tt=LUA_TBOOLEAN; }
tt                130 lib/lua/lobject.h     i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TSTRING; \
tt                135 lib/lua/lobject.h     i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TUSERDATA; \
tt                140 lib/lua/lobject.h     i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TTHREAD; \
tt                145 lib/lua/lobject.h     i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TFUNCTION; \
tt                150 lib/lua/lobject.h     i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TTABLE; \
tt                155 lib/lua/lobject.h     i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TPROTO; \
tt                163 lib/lua/lobject.h     o1->value = o2->value; o1->tt=o2->tt; \
tt                186 lib/lua/lobject.h #define setttype(obj, tt) (ttype(obj) = (tt))
tt                152 lib/lua/lstate.c   L->tt = LUA_TTHREAD;
tt                149 lib/lua/lstate.h #define rawgco2ts(o)	check_exp((o)->gch.tt == LUA_TSTRING, &((o)->ts))
tt                151 lib/lua/lstate.h #define rawgco2u(o)	check_exp((o)->gch.tt == LUA_TUSERDATA, &((o)->u))
tt                153 lib/lua/lstate.h #define gco2cl(o)	check_exp((o)->gch.tt == LUA_TFUNCTION, &((o)->cl))
tt                154 lib/lua/lstate.h #define gco2h(o)	check_exp((o)->gch.tt == LUA_TTABLE, &((o)->h))
tt                155 lib/lua/lstate.h #define gco2p(o)	check_exp((o)->gch.tt == LUA_TPROTO, &((o)->p))
tt                156 lib/lua/lstate.h #define gco2uv(o)	check_exp((o)->gch.tt == LUA_TUPVAL, &((o)->uv))
tt                158 lib/lua/lstate.h 	check_exp((o) == NULL || (o)->gch.tt == LUA_TUPVAL, &((o)->uv))
tt                159 lib/lua/lstate.h #define gco2th(o)	check_exp((o)->gch.tt == LUA_TTHREAD, &((o)->th))
tt                 60 lib/lua/lstring.c   ts->tsv.tt = LUA_TSTRING;
tt                102 lib/lua/lstring.c   u->uv.tt = LUA_TUSERDATA;
tt                425 lib/lua/ltable.c   gkey(mp)->value = key->value; gkey(mp)->tt = key->tt;