Searched refs:checktag (Results 1 – 1 of 1) sorted by relevance
| /illumos-gate/usr/src/uts/common/fs/zfs/lua/ |
| H A D | lobject.h | 130 #define checktag(o,t) (rttype(o) == (t)) macro 132 #define ttisnumber(o) checktag((o), LUA_TNUMBER) 133 #define ttisnil(o) checktag((o), LUA_TNIL) 134 #define ttisboolean(o) checktag((o), LUA_TBOOLEAN) 135 #define ttislightuserdata(o) checktag((o), LUA_TLIGHTUSERDATA) 137 #define ttisshrstring(o) checktag((o), ctb(LUA_TSHRSTR)) 138 #define ttislngstring(o) checktag((o), ctb(LUA_TLNGSTR)) 139 #define ttistable(o) checktag((o), ctb(LUA_TTABLE)) 142 #define ttisCclosure(o) checktag((o), ctb(LUA_TCCL)) 143 #define ttisLclosure(o) checktag((o), ctb(LUA_TLCL)) [all …]
|