Searched refs:VERIFY3_IMPL (Results 1 – 1 of 1) sorted by relevance
/titanic_44/usr/src/uts/common/sys/ |
H A D | debug.h | 103 #define VERIFY3_IMPL(LEFT, OP, RIGHT, TYPE) do { \ macro 112 #define VERIFY3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) 113 #define VERIFY3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) 114 #define VERIFY3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) 115 #define VERIFY0(x) VERIFY3_IMPL(x, ==, 0, uintmax_t) 118 #define ASSERT3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) 119 #define ASSERT3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) 120 #define ASSERT3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) 121 #define ASSERT0(x) VERIFY3_IMPL(x, ==, 0, uintmax_t)
|