HomeSort by: relevance | last modified time | path
    Searched refs:assert_cmp (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/jemalloc.old/dist/test/include/test/
test.h 3 #define assert_cmp(t, a, b, cmp, neg_cmp, pri, ...) do { \ macro
20 #define assert_ptr_eq(a, b, ...) assert_cmp(void *, a, b, ==, \
22 #define assert_ptr_ne(a, b, ...) assert_cmp(void *, a, b, !=, \
24 #define assert_ptr_null(a, ...) assert_cmp(void *, a, NULL, ==, \
26 #define assert_ptr_not_null(a, ...) assert_cmp(void *, a, NULL, !=, \
29 #define assert_c_eq(a, b, ...) assert_cmp(char, a, b, ==, !=, "c", __VA_ARGS__)
30 #define assert_c_ne(a, b, ...) assert_cmp(char, a, b, !=, ==, "c", __VA_ARGS__)
31 #define assert_c_lt(a, b, ...) assert_cmp(char, a, b, <, >=, "c", __VA_ARGS__)
32 #define assert_c_le(a, b, ...) assert_cmp(char, a, b, <=, >, "c", __VA_ARGS__)
33 #define assert_c_ge(a, b, ...) assert_cmp(char, a, b, >=, <, "c", __VA_ARGS__
    [all...]
  /src/external/bsd/jemalloc/dist/test/include/test/
test.h 323 #define assert_cmp(t, a, b, cmp, neg_cmp, pri, ...) verify_cmp(true, \ macro
326 #define assert_ptr_eq(a, b, ...) assert_cmp(void *, a, b, ==, \
328 #define assert_ptr_ne(a, b, ...) assert_cmp(void *, a, b, !=, \
330 #define assert_ptr_null(a, ...) assert_cmp(void *, a, NULL, ==, \
332 #define assert_ptr_not_null(a, ...) assert_cmp(void *, a, NULL, !=, \
335 #define assert_c_eq(a, b, ...) assert_cmp(char, a, b, ==, !=, "c", __VA_ARGS__)
336 #define assert_c_ne(a, b, ...) assert_cmp(char, a, b, !=, ==, "c", __VA_ARGS__)
337 #define assert_c_lt(a, b, ...) assert_cmp(char, a, b, <, >=, "c", __VA_ARGS__)
338 #define assert_c_le(a, b, ...) assert_cmp(char, a, b, <=, >, "c", __VA_ARGS__)
339 #define assert_c_ge(a, b, ...) assert_cmp(char, a, b, >=, <, "c", __VA_ARGS__
    [all...]

Completed in 32 milliseconds