HomeSort by relevance Sort by last modified time
    Searched defs:CHECK_EQ (Results 1 - 12 of 12) 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...]
  /frameworks/av/include/media/stagefright/foundation/
ADebug.h 71 #define CHECK_EQ(x,y) CHECK_OP(x,y,EQ,==)
  /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/openfst/src/include/fst/
log.h 56 #define CHECK_EQ(x, y) CHECK((x) == (y))
  /external/chromium/sdch/open-vcdiff/src/
testing.h 47 #define CHECK_EQ(X, Y) assert(X == Y)
  /external/open-vcdiff/src/
testing.h 47 #define CHECK_EQ(X, Y) assert(X == Y)
  /external/regex-re2/util/
logging.h 28 #define CHECK_EQ(x, y) CHECK((x) == (y))
  /external/v8/src/
checks.h 63 // Helper function used by the CHECK_EQ function when given int
70 "CHECK_EQ(%s, %s) failed\n# Expected: %i\n# Found: %i",
76 // Helper function used by the CHECK_EQ function when given int64_t
87 "CHECK_EQ(%s, %s) failed\n#"
125 "CHECK_EQ(%s, %s) failed\n# Expected: %s\n# Found: %s",
155 "CHECK_EQ(%s, %s) failed\n# Expected: %p\n# Found: %p",
190 "CHECK_EQ(%s, %s) failed\n# Expected: %f\n# Found: %f",
219 #define CHECK_EQ(expected, value) CheckEqualsHelper(__FILE__, __LINE__, \
262 #define ASSERT_EQ(v1, v2) CHECK_EQ(v1, v2)
  /external/ceres-solver/internal/ceres/miniglog/glog/
logging.h 78 // CHECK_EQ(val1, val2) val1 == val2
330 #define CHECK_EQ(val1, val2) CHECK_OP(val1, val2, ==)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 195 #define CHECK_EQ(a, b) CHECK_IMPL((a), ==, (b))
204 #define DCHECK_EQ(a, b) CHECK_EQ(a, b)
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compat.h 235 #define CHECK_EQ(x, y) assert((x) == (y))
  /external/chromium/base/
logging.h 490 // Don't use this macro directly in your code, use CHECK_EQ et al below.
493 // CHECK_EQ(...) else { ... } work properly.
523 #define CHECK_EQ(val1, val2) CHECK_OP(EQ, ==, val1, val2)
    [all...]

Completed in 956 milliseconds