HomeSort by relevance Sort by last modified time
    Searched defs:CHECK_EQ (Results 1 - 18 of 18) sorted by null

  /ndk/tests/device/test-unwind-struct/jni/
main.c 7 #define CHECK_EQ(EXPECTED_VALUE, ACTUAL_VALUE) \
20 CHECK_EQ(88, sizeof(struct _Unwind_Control_Block));
21 CHECK_EQ(0, offsetof(struct _Unwind_Control_Block, exception_class));
22 CHECK_EQ(8, offsetof(struct _Unwind_Control_Block, exception_cleanup));
24 CHECK_EQ(24, sizeof(struct _Unwind_Exception));
25 CHECK_EQ(0, offsetof(struct _Unwind_Exception, exception_class));
26 CHECK_EQ(8, offsetof(struct _Unwind_Exception, exception_cleanup));
27 CHECK_EQ(12, offsetof(struct _Unwind_Exception, private_1));
28 CHECK_EQ(16, offsetof(struct _Unwind_Exception, private_2));
30 CHECK_EQ(32, sizeof(struct _Unwind_Exception))
    [all...]
  /toolchain/binutils/binutils-2.25/gold/testsuite/
incr_comdat_test_1.cc 49 #define CHECK_EQ(var, expected) \
63 CHECK_EQ(bar(), 5);
64 CHECK_EQ(foo(), 11);
65 CHECK_EQ(a.sum(55), 11 + 55);
66 CHECK_EQ(a.sum(66), 11 + 55 + 66);
  /external/pcre/dist/
pcre_scanner_unittest.cc 51 #define CHECK_EQ(a, b) do { \
79 CHECK_EQ(var, "alpha");
80 CHECK_EQ(number, 1);
81 CHECK_EQ(s.LineNumber(), 3);
83 CHECK_EQ(comments.size(), 1);
84 CHECK_EQ(comments[0].as_string(), " // this sets alpha\n");
88 CHECK_EQ(var, "bravo");
89 CHECK_EQ(number, 2);
91 CHECK_EQ(comments.size(), 1);
92 CHECK_EQ(comments[0].as_string(), " // bravo is set here\n")
    [all...]
pcrecpp_unittest.cc 58 // CHECK_EQ(fp->Write(x), 4)
67 #define CHECK_EQ(a, b) CHECK(a == b)
84 CHECK_EQ(i, 1234);
134 CHECK_EQ(v, 0x ## value); \
136 CHECK_EQ(v, 0x ## value); \
160 CHECK_EQ(v, 0 ## value); \
162 CHECK_EQ(v, 0 ## value); \
186 CHECK_EQ(v, value); \
188 CHECK_EQ(v, value); \
340 CHECK_EQ(one, t->single)
    [all...]
  /frameworks/wilhelm/tests/sandbox/
nativewindow.cpp 32 #define CHECK_EQ(a,b) CHECK((a)==(b))
50 CHECK_EQ(composerClient->initCheck(), (status_t)OK);
64 CHECK_EQ(control->setLayer(30000), (status_t)OK);
65 CHECK_EQ(control->show(), (status_t)OK);
  /external/google-benchmark/src/
check.h 53 #define CHECK_EQ(a, b) CHECK((a) == (b))
  /external/v8/test/cctest/compiler/
codegen-tester.cc 27 CHECK_EQ(a == b, wWord32Equal.Int32Compare(a, b));
28 CHECK_EQ(a < b, wInt32LessThan.Int32Compare(a, b));
29 CHECK_EQ(a <= b, wInt32LessThanOrEqual.Int32Compare(a, b));
39 CHECK_EQ(a == b, wWord32Equal.Int32Compare(a, b));
40 CHECK_EQ(a < b, wUint32LessThan.Int32Compare(a, b));
41 CHECK_EQ(a <= b, wUint32LessThanOrEqual.Int32Compare(a, b));
46 CHECK_EQ(true, wWord32Equal.Int32Compare(0, 0));
47 CHECK_EQ(true, wWord32Equal.Int32Compare(257, 257));
48 CHECK_EQ(true, wWord32Equal.Int32Compare(65539, 65539));
49 CHECK_EQ(true, wWord32Equal.Int32Compare(-1, -1))
    [all...]
  /frameworks/av/include/media/stagefright/foundation/
ADebug.h 95 #define CHECK_EQ(x,y) CHECK_OP(x,y,EQ,==)
  /external/regex-re2/util/
logging.h 28 #define CHECK_EQ(x, y) CHECK((x) == (y))
  /external/tpm2/
marshal_test.c 27 #define CHECK_EQ(a, b) if (a != b) printf("[ERROR:%d] CHECK_EQ(%s == %s) failed\n", __LINE__, #a, #b);
84 CHECK_EQ(bytes_marshalled, num_bytes)
85 CHECK_EQ(size, 0)
86 CHECK_EQ(buffer_ptr, buffer+num_bytes)
90 CHECK_EQ(rc, TPM_RC_SUCCESS);
91 CHECK_EQ(size, 0);
92 CHECK_EQ(buffer_ptr, buffer+num_bytes);
94 CHECK_EQ(value, 12345);
102 CHECK_EQ(size, num_bytes-1)
    [all...]
  /external/v8/src/base/
logging.h 56 // Don't use this macro directly in your code, use CHECK_EQ et al below.
132 #define CHECK_EQ(lhs, rhs) CHECK_OP(EQ, ==, lhs, rhs)
155 #define DCHECK_EQ(v1, v2) CHECK_EQ(v1, v2)
  /system/core/base/include/android-base/
logging.h 178 #define CHECK_EQ(x, y) CHECK_OP(x, y, == )
234 if (::android::base::kEnableDChecks) CHECK_EQ(x, y)
  /art/runtime/base/
logging.h 134 #define CHECK_EQ(x, y) CHECK_OP(x, y, ==)
183 #define DCHECK_EQ(x, y) if (::art::kEnableDChecks) CHECK_EQ(x, y)
  /external/ceres-solver/internal/ceres/miniglog/glog/
logging.h 78 // CHECK_EQ(val1, val2) val1 == val2
363 #define CHECK_EQ(val1, val2) CHECK_OP(val1, val2, ==)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 221 #define CHECK_EQ(a, b) CHECK_IMPL((a), ==, (b))
230 #define DCHECK_EQ(a, b) CHECK_EQ(a, b)
  /external/libweave/third_party/chromium/base/
logging.h 368 // Captures the result of a CHECK_EQ (for example) and facilitates testing as a
413 // Don't use this macro directly in your code, use CHECK_EQ et al below.
417 // CHECK_EQ(2, a);
481 #define CHECK_EQ(val1, val2) CHECK_OP(EQ, ==, val1, val2)
633 // Used for CHECK_EQ(), etc. Takes ownership of the given string.
  /system/extras/perfprofd/quipper/base/
logging.h 236 // Don't use this macro directly in your code, use CHECK_EQ et al below.
239 // CHECK_EQ(...) else { ... } work properly.
301 #define CHECK_EQ(val1, val2) CHECK_OP(EQ, ==, val1, val2)
462 // Used for CHECK_EQ(), etc. Takes ownership of the given string.
  /external/libchrome/base/
logging.h 463 // Captures the result of a CHECK_EQ (for example) and facilitates testing as a
534 // Don't use this macro directly in your code, use CHECK_EQ et al below.
538 // CHECK_EQ(2, a);
602 #define CHECK_EQ(val1, val2) CHECK_OP(EQ, ==, val1, val2)
793 // Used for CHECK_EQ(), etc. Takes ownership of the given string.
    [all...]

Completed in 1782 milliseconds