Searched refs:SBUF_ASSERT_CMP (Results 1 – 1 of 1) sorted by relevance
| /xnu-10063.101.15/bsd/kern/ |
| H A D | subr_sbuf.c | 743 #define SBUF_ASSERT_CMP(e, a, c) \ macro 752 #define SBUF_ASSERT_EQ(e, a) SBUF_ASSERT_CMP(e, a, ==) 753 #define SBUF_ASSERT_NE(e, a) SBUF_ASSERT_CMP(e, a, !=) 754 #define SBUF_ASSERT_GT(e, a) SBUF_ASSERT_CMP(e, a, >) 755 #define SBUF_ASSERT_GTE(e, a) SBUF_ASSERT_CMP(e, a, >=) 756 #define SBUF_ASSERT_LT(e, a) SBUF_ASSERT_CMP(e, a, <) 757 #define SBUF_ASSERT_LTE(e, a) SBUF_ASSERT_CMP(e, a, <=)
|