Lines Matching refs:tt

223 GCObject*next;lu_byte tt;lu_byte marked;  member
232 Value value;int tt; member
243 #define ttype(o)((o)->tt)
258 #define setnilvalue(obj)((obj)->tt=0)
259 #define setnvalue(obj,x){TValue*i_o=(obj);i_o->value.n=(x);i_o->tt=3;}
260 #define setbvalue(obj,x){TValue*i_o=(obj);i_o->value.b=(x);i_o->tt=1;}
261 #define setsvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=4;checklivene…
262 #define setuvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=7;checklivene…
263 #define setthvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=8;checkliven…
264 #define setclvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=6;checkliven…
265 #define sethvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=5;checklivene…
266 #define setptvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=(8+1);checkl…
267 …1,obj2){const TValue*o2=(obj2);TValue*o1=(obj1);o1->value=o2->value;o1->tt=o2->tt;checkliveness(G(…
268 #define setttype(obj,tt)(ttype(obj)=(tt)) argument
274 GCObject*next;lu_byte tt;lu_byte marked; member
285 GCObject*next;lu_byte tt;lu_byte marked; member
292 GCObject*next;lu_byte tt;lu_byte marked; member
320 GCObject*next;lu_byte tt;lu_byte marked; member
331 GCObject*next;lu_byte tt;lu_byte marked;lu_byte isC;lu_byte nupvalues;GCObject*gclist;struct Table*… member
336 GCObject*next;lu_byte tt;lu_byte marked;lu_byte isC;lu_byte nupvalues;GCObject*gclist;struct Table*… member
347 Value value;int tt; member
357 GCObject*next;lu_byte tt;lu_byte marked; member
462 GCObject*next;lu_byte tt;lu_byte marked; member
500 #define rawgco2ts(o)check_exp((o)->gch.tt==4,&((o)->ts))
502 #define rawgco2u(o)check_exp((o)->gch.tt==7,&((o)->u))
504 #define gco2cl(o)check_exp((o)->gch.tt==6,&((o)->cl))
505 #define gco2h(o)check_exp((o)->gch.tt==5,&((o)->h))
506 #define gco2p(o)check_exp((o)->gch.tt==(8+1),&((o)->p))
507 #define gco2uv(o)check_exp((o)->gch.tt==(8+2),&((o)->uv))
508 #define ngcotouv(o)check_exp((o)==NULL||(o)->gch.tt==(8+2),&((o)->uv))
509 #define gco2th(o)check_exp((o)->gch.tt==8,&((o)->th))
586 static void luaC_link(lua_State*L,GCObject*o,lu_byte tt);
853 uv->tt=(8+2);
1293 ts->tsv.tt=4;
1330 u->uv.tt=7;
1604 gkey(mp)->value=key->value;gkey(mp)->tt=key->tt;
1735 switch(o->gch.tt){
1912 switch(o->gch.tt){
1990 switch(o->gch.tt){
2017 if(curr->gch.tt==8)
2212 static void luaC_link(lua_State*L,GCObject*o,lu_byte tt){
2217 o->gch.tt=tt;
2336 L->tt=8;