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

  /src/external/bsd/jemalloc.old/dist/test/include/test/
test.h 24 #define expect_cmp(t, a, b, cmp, neg_cmp, pri, ...) verify_cmp(false, \ macro
27 #define expect_ptr_eq(a, b, ...) expect_cmp(void *, a, b, ==, \
29 #define expect_ptr_ne(a, b, ...) expect_cmp(void *, a, b, !=, \
31 #define expect_ptr_null(a, ...) expect_cmp(void *, a, NULL, ==, \
33 #define expect_ptr_not_null(a, ...) expect_cmp(void *, a, NULL, !=, \
36 #define expect_c_eq(a, b, ...) expect_cmp(char, a, b, ==, !=, "c", __VA_ARGS__)
37 #define expect_c_ne(a, b, ...) expect_cmp(char, a, b, !=, ==, "c", __VA_ARGS__)
38 #define expect_c_lt(a, b, ...) expect_cmp(char, a, b, <, >=, "c", __VA_ARGS__)
39 #define expect_c_le(a, b, ...) expect_cmp(char, a, b, <=, >, "c", __VA_ARGS__)
40 #define expect_c_ge(a, b, ...) expect_cmp(char, a, b, >=, <, "c", __VA_ARGS__
    [all...]
  /src/external/bsd/jemalloc/dist/test/include/test/
test.h 22 #define expect_cmp(t, a, b, cmp, neg_cmp, pri, ...) \ macro
26 expect_cmp(void *, a, b, ==, !=, "p", __VA_ARGS__)
28 expect_cmp(void *, a, b, !=, ==, "p", __VA_ARGS__)
30 expect_cmp(void *, a, NULL, ==, !=, "p", __VA_ARGS__)
32 expect_cmp(void *, a, NULL, !=, ==, "p", __VA_ARGS__)
34 #define expect_c_eq(a, b, ...) expect_cmp(char, a, b, ==, !=, "c", __VA_ARGS__)
35 #define expect_c_ne(a, b, ...) expect_cmp(char, a, b, !=, ==, "c", __VA_ARGS__)
36 #define expect_c_lt(a, b, ...) expect_cmp(char, a, b, <, >=, "c", __VA_ARGS__)
37 #define expect_c_le(a, b, ...) expect_cmp(char, a, b, <=, >, "c", __VA_ARGS__)
38 #define expect_c_ge(a, b, ...) expect_cmp(char, a, b, >=, <, "c", __VA_ARGS__
    [all...]

Completed in 20 milliseconds