Searched refs:checktag (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dlobject.h129 #define checktag(o,t) (rttype(o) == (t)) macro
131 #define ttisnumber(o) checktag((o), LUA_TNUMBER)
132 #define ttisnil(o) checktag((o), LUA_TNIL)
133 #define ttisboolean(o) checktag((o), LUA_TBOOLEAN)
134 #define ttislightuserdata(o) checktag((o), LUA_TLIGHTUSERDATA)
136 #define ttisshrstring(o) checktag((o), ctb(LUA_TSHRSTR))
137 #define ttislngstring(o) checktag((o), ctb(LUA_TLNGSTR))
138 #define ttistable(o) checktag((o), ctb(LUA_TTABLE))
141 #define ttisCclosure(o) checktag((o), ctb(LUA_TCCL))
142 #define ttisLclosure(o) checktag((
361 #undef checktag macro
363 #define checktag macro
[all...]
/freebsd-13-stable/contrib/lua/src/
H A Dlobject.h89 #define checktag(o,t) (rawtt(o) == (t)) macro
175 #define ttisstrictnil(o) checktag((o), LUA_VNIL)
181 #define isabstkey(v) checktag((v), LUA_VABSTKEY)
221 #define ttisfalse(o) checktag((o), LUA_VFALSE)
222 #define ttistrue(o) checktag((o), LUA_VTRUE)
242 #define ttisthread(o) checktag((o), ctb(LUA_VTHREAD))
305 #define ttisfloat(o) checktag((o), LUA_VNUMFLT)
306 #define ttisinteger(o) checktag((o), LUA_VNUMINT)
342 #define ttisshrstring(o) checktag((o), ctb(LUA_VSHRSTR))
343 #define ttislngstring(o) checktag((
[all...]

Completed in 33 milliseconds