Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/lua/
H A Dlobject.h101 #define TValuefields Value value_; int tt_
115 #define rttype(o) ((o)->tt_)
182 #define settt_(o,t) ((o)->tt_=(t))
239 io1->value_ = io2->value_; io1->tt_ = io2->tt_; \
305 #define tt_(o) ((o)->u.i.tt__) macro
316 #define tt_(o) ((o)->u.i.tt__) macro
335 #define ttisnumber(o) ((tt_(o) & NNMASK) != NNMARK)
340 #define rttype(o) (ttisnumber(o) ? LUA_TNUMBER : tt_(o) & 0xff)
343 #define settt_(o,t) (tt_(o) = tag2tt(t))
362 #define checktag(o,t) (tt_(o) == tag2tt(t))
[all …]
/freebsd/contrib/lua/src/
H A Dlobject.h65 #define TValuefields Value value_; lu_byte tt_
77 #define rawtt(o) ((o)->tt_)
114 #define settt_(o,t) ((o)->tt_=(t))
120 io1->value_ = io2->value_; settt_(io1, io2->tt_); \
715 n_->u.key_val = io_->value_; n_->u.key_tt = io_->tt_; \
722 io_->value_ = n_->u.key_val; io_->tt_ = n_->u.key_tt; \