Home
last modified time | relevance | path

Searched refs:expect_equal (Results 1 – 4 of 4) sorted by relevance

/third_party/musl/libc-test/src/functional/
Dtest-malloc-stats-common.h82 static int expect_equal(long long amt, long long value, const char *amt_name) in expect_equal() function
105 result &= expect_equal( in validate_total_allocated()
114 int result = expect_equal(total_stats->total_allocated_memory, 0, "allocated memory"); in validate_all_freed()
115 result &= expect_equal(total_stats->total_mmapped_memory, 0, "mmapped memory"); in validate_all_freed()
116 result &= expect_equal(total_stats->mmapped_regions, 0, "mmapped regions"); in validate_all_freed()
Dtest-malloc-info-stats-print.h164 result &= expect_equal(stats->mmapped_regions, 1, "mmapped regions"); in validate_allocated_size()
/third_party/ltp/tools/sparse/sparse-src/
Dparse.c2624 int expect_equal = 0; in single_initializer() local
2646 expect_equal = 1; in single_initializer()
2662 expect_equal = 1; in single_initializer()
2667 if (nested && !expect_equal) { in single_initializer()
2671 expect_equal = 1; in single_initializer()
2673 if (expect_equal) in single_initializer()
/third_party/skia/tests/
DSkSLDSLTest.cpp142 static void expect_equal(skiatest::Reporter* r, int lineNumber, T& input, const char* expected) { in expect_equal() function
151 static void expect_equal(skiatest::Reporter* r, int lineNumber, T&& dsl, const char* expected) { in expect_equal() function
153 return expect_equal(r, lineNumber, dsl, expected); in expect_equal()
156 #define EXPECT_EQUAL(a, b) expect_equal(r, __LINE__, (a), (b))