Searched defs:VERIFY3_IMPL (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/
H A Ddebug.h102 #define VERIFY3_IMPL(LEFT, OP, RIGHT, TYPE) do { \ macro
111 #define VERIFY3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t)
112 #define VERIFY3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t)
113 #define VERIFY3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t)
114 #define VERIFY0(x) VERIFY3_IMPL(x, ==, 0, uintmax_t)
117 #define ASSERT3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t)
118 #define ASSERT3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t)
119 #define ASSERT3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t)
120 #define ASSERT0(x) VERIFY3_IMPL(x, ==, 0, uintmax_t)

Completed in 69 milliseconds