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

/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Ddebug.h108 #define VERIFY3_IMPL(LEFT, OP, RIGHT, TYPE) do { \ macro
117 #define VERIFY3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t)
118 #define VERIFY3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t)
119 #define VERIFY3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t)
120 #define VERIFY0(x) VERIFY3_IMPL(x, ==, 0, uintmax_t)
123 #define ASSERT3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t)
124 #define ASSERT3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t)
125 #define ASSERT3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t)
126 #define ASSERT0(x) VERIFY3_IMPL(x, ==, 0, uintmax_t)

Completed in 96 milliseconds