Searched +defs:obj2 +defs:o (Results 1 – 3 of 3) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lobject.h | 111 #define val_(o) ((o)->value_) argument 112 #define num_(o) (val_(o).n) argument 116 #define rttype(o) ((o)->tt_) argument 122 #define ttype(o) (rttype(o) & 0x3F) argument 125 #define ttypenv(o) (novariant(rttype(o))) argument 129 #define checktag(o,t) (rttype(o) == (t)) argument 130 #define checktype(o,t) (ttypenv(o) == (t)) argument 131 #define ttisnumber(o) checktag((o), LUA_TNUMBER) argument 132 #define ttisnil(o) checktag((o), LUA_TNIL) argument 133 #define ttisboolean(o) checktag((o), LUA_TBOOLEAN) argument [all …]
|
/freebsd/contrib/lua/src/ |
H A D | lobject.h | 72 #define val_(o) ((o)->value_) argument 73 #define valraw(o) (val_(o)) argument 77 #define rawtt(o) ((o)->tt_) argument 84 #define ttypetag(o) withvariant(rawtt(o)) argument 87 #define ttype(o) (novariant(rawtt(o))) argument 91 #define checktag(o,t) (rawtt(o) == (t)) argument 92 #define checktype(o,t) (ttype(o) == (t)) argument 114 #define settt_(o,t) ((o)->tt_=(t)) argument 118 #define setobj(L,obj1,obj2) \ argument 172 #define s2v(o) (&(o)->val) argument [all …]
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-matchers-containers_test.cc | 301 ConstPropagatingPtr<int> o(&three); in TEST() local 1015 Uncopyable obj2(0); in TEST() local
|