/external/llvm/test/MC/AArch64/ |
H A D | cyclone-crc.s | 7 CHECK: error: instruction requires: crc label 8 CHECK: crc32b w0, w1, w5 label 9 CHECK: error: instruction requires: crc label 10 CHECK: crc32h w3, w5, w6 label 11 CHECK: error: instruction requires: crc label 12 CHECK: crc32w w19, wzr, w20 label 13 CHECK: error: instruction requires: crc label 14 CHECK: crc32x w3, w5, x20 label 20 CHECK: error: instruction requires: crc label 21 CHECK label 22 CHECK: error: instruction requires: crc label 23 CHECK: crc32ch w3, w5, w7 label 24 CHECK: error: instruction requires: crc label 25 CHECK: crc32cw w11, w13, w17 label 26 CHECK: error: instruction requires: crc label 27 CHECK: crc32cx w19, w23, x29 label [all...] |
/external/sfntly/cpp/src/sfntly/port/ |
H A D | logging.h | 25 #define CHECK(expr) \ macro 27 printf("CHECK failed\n"); \
|
/external/clang/test/Analysis/ |
H A D | traversal-path-unification.c | 9 #define CHECK(x) ((x) & 1) macro 11 #define CHECK(x) (x) macro 14 // CHECK: --BEGIN FUNCTION-- 17 if (CHECK(i)) 28 // CHECK: --END FUNCTION-- 29 // CHECK-NOT: --END FUNCTION--
|
H A D | bitwise-ops.c | 4 #define CHECK(expr) if (!(expr)) return; clang_analyzer_eval(expr) macro 8 CHECK(x); // expected-warning{{TRUE}} 9 CHECK(x & 1); // expected-warning{{TRUE}} 12 CHECK(1 - x); // expected-warning{{UNKNOWN}} 13 CHECK(x & y); // expected-warning{{UNKNOWN}}
|
/external/pdfium/third_party/base/ |
H A D | logging.h | 18 #define CHECK(condition) \ macro
|
/external/dtc/tests/ |
H A D | add_subnode_with_nops.c | 34 #define CHECK(code) \ macro 58 CHECK(fdt_create(fdt, SPACE)); 60 CHECK(fdt_finish_reservemap(fdt)); 61 CHECK(fdt_begin_node(fdt, "")); 62 CHECK(fdt_property_cell(fdt, "prop1", TEST_VALUE_1)); 63 CHECK(fdt_property_cell(fdt, "prop2", TEST_VALUE_2)); 64 CHECK(fdt_end_node(fdt)); 65 CHECK(fdt_finish(fdt)); 70 CHECK(fdt_open_into(fdt, fdt, SPACE)); 75 CHECK(fdt_nop_propert [all...] |
H A D | appendprop1.c | 34 #define CHECK(code) \ macro 51 CHECK(fdt_create(fdt, SPACE)); 52 CHECK(fdt_finish_reservemap(fdt)); 53 CHECK(fdt_begin_node(fdt, "")); 54 CHECK(fdt_end_node(fdt)); 55 CHECK(fdt_finish(fdt)); 58 CHECK(fdt_open_into(fdt, fdt, SPACE)); 60 CHECK(fdt_appendprop(fdt, 0, "prop-bytes", bytes, sizeof(bytes))); 61 CHECK(fdt_appendprop_cell(fdt, 0, "prop-int", TEST_VALUE_1)); 62 CHECK(fdt_appendprop_u6 [all...] |
H A D | appendprop2.c | 34 #define CHECK(code) \ macro 51 CHECK(fdt_open_into(fdt, buf, SPACE)); 54 CHECK(fdt_appendprop(fdt, 0, "prop-bytes", bytes, sizeof(bytes))); 55 CHECK(fdt_appendprop_cell(fdt, 0, "prop-int", TEST_VALUE_2)); 56 CHECK(fdt_appendprop_u64(fdt, 0, "prop-int64", TEST_VALUE64_1)); 57 CHECK(fdt_appendprop_string(fdt, 0, "prop-str", TEST_STRING_2)); 59 CHECK(fdt_pack(fdt));
|
H A D | check_path.c | 27 #define CHECK(code) \ macro 47 CHECK(fdt_open_into(dt, copy, FDT_COPY_SIZE));
|
H A D | overlay_bad_fixup.c | 28 #define CHECK(code, expected) \ macro 49 CHECK(fdt_open_into(dt, copy, FDT_COPY_SIZE), 0); 67 CHECK(fdt_overlay_apply(fdt_base, fdt_overlay), -FDT_ERR_BADOVERLAY);
|
H A D | rw_tree1.c | 34 #define CHECK(code) \ macro 59 CHECK(fdt_create_empty_tree(fdt, SPACE)); 61 CHECK(fdt_add_mem_rsv(fdt, TEST_ADDR_1, TEST_SIZE_1)); 62 CHECK(fdt_add_mem_rsv(fdt, TEST_ADDR_2, TEST_SIZE_2)); 64 CHECK(fdt_setprop_string(fdt, 0, "compatible", "test_tree1")); 65 CHECK(fdt_setprop_u32(fdt, 0, "prop-int", TEST_VALUE_1)); 66 CHECK(fdt_setprop_u64(fdt, 0, "prop-int64", TEST_VALUE64_1)); 67 CHECK(fdt_setprop_string(fdt, 0, "prop-str", TEST_STRING_1)); 71 CHECK(fdt_setprop_string(fdt, s1, "compatible", "subnode1")); 72 CHECK(fdt_setprop_cel [all...] |
H A D | sw_tree1.c | 73 #define CHECK(code) \ macro 114 CHECK(fdt_create(fdt, size)); 118 CHECK(fdt_add_reservemap_entry(fdt, TEST_ADDR_1, TEST_SIZE_1)); 120 CHECK(fdt_add_reservemap_entry(fdt, TEST_ADDR_2, TEST_SIZE_2)); 121 CHECK(fdt_finish_reservemap(fdt)); 123 CHECK(fdt_begin_node(fdt, "")); 124 CHECK(fdt_property_string(fdt, "compatible", "test_tree1")); 125 CHECK(fdt_property_u32(fdt, "prop-int", TEST_VALUE_1)); 126 CHECK(fdt_property_u64(fdt, "prop-int64", TEST_VALUE64_1)); 127 CHECK(fdt_property_strin [all...] |
H A D | dtb_reverse.c | 32 #define CHECK(code) \ macro 50 CHECK(fdt_get_mem_rsv(in, n, &addr, &size)); 51 CHECK(fdt_add_reservemap_entry(out, addr, size)); 76 CHECK(fdt_property(out, name, data, len)); 91 CHECK(fdt_get_path(in, nextoffset, path, sizeof(path))); 112 CHECK(fdt_get_path(in, nodeoffset, path, sizeof(path))); 116 CHECK(fdt_begin_node(out, name)); 129 CHECK(fdt_end_node(out)); 149 CHECK(fdt_create(out, bufsize)); 154 CHECK(fdt_finish_reservema [all...] |
H A D | dtbs_equal_ordered.c | 49 #define CHECK(code) \ macro 65 CHECK(fdt_get_mem_rsv(fdt1, i, &addr1, &size1)); 66 CHECK(fdt_get_mem_rsv(fdt2, i, &addr2, &size2));
|
H A D | dtbs_equal_unordered.c | 50 #define CHECK(code) \ macro 90 CHECK(fdt_get_mem_rsv(fdt1, i, &addr1, &size1)); 91 CHECK(fdt_get_mem_rsv(fdt2, i, &addr2, &size2)); 183 CHECK(fdt_get_path(fdt1, offset1, path1, sizeof(path1))); 184 CHECK(fdt_get_path(fdt2, offset2, path2, sizeof(path2)));
|
H A D | overlay.c | 28 #define CHECK(code) \ macro 79 CHECK(node_off < 0); 92 CHECK(node_off < 0); 140 CHECK(off < 0); 143 CHECK(!local_phandle); 145 CHECK(fdt_getprop_u32_by_poffset(fdt, "/test-node", 148 CHECK(val != local_phandle); 150 CHECK(fdt_getprop_u32_by_poffset(fdt, "/test-node", 153 CHECK(val != local_phandle); 165 CHECK(of [all...] |
/external/libexif/test/ |
H A D | test-integers.c | 39 # define CHECK(condition) \ macro 46 # define CHECK(condition) \ macro 58 CHECK(sizeof(unsigned int) >= sizeof(uint32_t)); 61 CHECK(sizeof(enum_t) <= sizeof(int));
|
/external/libvncserver/test/ |
H A D | cargstest.c | 16 #define CHECK(a,b) if(screen->a!=b) { fprintf(stderr,#a " is %d (should be " #b ")\n",screen->a); ret=1; } macro 17 CHECK(width,1024); 18 CHECK(height,768); 19 CHECK(alwaysShared,TRUE); 20 CHECK(httpPort,3002); 21 CHECK(dontDisconnect,TRUE);
|
/external/clang/test/CodeGenCXX/ |
H A D | bitfield-layout.cpp | 1 // RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - -O3 | FileCheck -check-prefix CHECK-LP64 %s 2 // RUN: %clang_cc1 %s -triple=i386-apple-darwin10 -emit-llvm -o - -O3 | FileCheck -check-prefix CHECK-LP32 %s 4 // CHECK-LP64: %union.Test1 = type { i32, [4 x i8] } 10 // CHECK-LP64: %union.Test2 = type { i8 } 15 // CHECK-LP64: %union.Test3 = type { i16 } 21 #define CHECK(x) if (!(x)) return __LINE__ macro 36 CHECK(c.a == 0); 37 CHECK(c.b == (unsigned long long)-1); 38 CHECK(c.c == 0); 40 // CHECK [all...] |
H A D | empty-classes.cpp | 3 // CHECK: %"struct.rdar20621065::B" = type { float, float } 31 #define CHECK(x) if (!(x)) return __LINE__ macro 34 // CHECK-LABEL: define i32 @_Z1fv() 39 CHECK(b1.a == 0xffffffff); 45 CHECK(c2.a == 0x12345678); 51 CHECK(d2.a == 0x87654321); 54 // CHECK: ret i32 0
|
/external/pcre/pcrecpp/ |
H A D | pcre_stringpiece_unittest.cc | 15 // CHECK dies with a fatal error if condition is not true. It is *not* 18 // CHECK(fp->Write(x) == 4) 19 #define CHECK(condition) do { \ macro 45 CHECK(map.size() == 3); 48 CHECK(iter->second == 1); 50 CHECK(iter->second == 2); 52 CHECK(iter->second == 0); 54 CHECK(iter == map.end()); 57 CHECK(new_iter == map.end()); 60 CHECK(new_ite [all...] |
/external/webrtc/webrtc/voice_engine/test/auto_test/ |
H A D | voe_cpu_test.cc | 29 #define CHECK(expr) \ macro 64 CHECK(base->Init()); 70 CHECK(voice_socket_transport->SetSendDestination("127.0.0.1", 5566)); 71 CHECK(voice_socket_transport->SetLocalReceiver(5566)); 73 CHECK(codec->SetRecPayloadType(channel, isac)); 74 CHECK(codec->SetSendCodec(channel, isac)); 76 CHECK(base->StartReceive(channel)); 77 CHECK(base->StartPlayout(channel)); 78 CHECK(base->StartSend(channel)); 79 CHECK(fil [all...] |
/external/google-benchmark/src/ |
H A D | check.h | 25 // CheckHandler is the class constructed by failing CHECK macros. CheckHandler 53 // The CHECK macro returns a std::ostream object that can have extra information 56 #define CHECK(b) \ macro 61 #define CHECK(b) ::benchmark::internal::GetNullLogInstance() 64 #define CHECK_EQ(a, b) CHECK((a) == (b)) 65 #define CHECK_NE(a, b) CHECK((a) != (b)) 66 #define CHECK_GE(a, b) CHECK((a) >= (b)) 67 #define CHECK_LE(a, b) CHECK((a) <= (b)) 68 #define CHECK_GT(a, b) CHECK((a) > (b)) 69 #define CHECK_LT(a, b) CHECK(( [all...] |
/external/libcxx/utils/google-benchmark/src/ |
H A D | check.h | 25 // CheckHandler is the class constructed by failing CHECK macros. CheckHandler 53 // The CHECK macro returns a std::ostream object that can have extra information 56 #define CHECK(b) \ macro 61 #define CHECK(b) ::benchmark::internal::GetNullLogInstance() 64 #define CHECK_EQ(a, b) CHECK((a) == (b)) 65 #define CHECK_NE(a, b) CHECK((a) != (b)) 66 #define CHECK_GE(a, b) CHECK((a) >= (b)) 67 #define CHECK_LE(a, b) CHECK((a) <= (b)) 68 #define CHECK_GT(a, b) CHECK((a) > (b)) 69 #define CHECK_LT(a, b) CHECK(( [all...] |
/external/regex-re2/util/ |
H A D | logging.h | 23 #define CHECK(x) if(x){}else LogMessageFatal(__FILE__, __LINE__).stream() << "Check failed: " #x macro 24 #define CHECK_LT(x, y) CHECK((x) < (y)) 25 #define CHECK_GT(x, y) CHECK((x) > (y)) 26 #define CHECK_LE(x, y) CHECK((x) <= (y)) 27 #define CHECK_GE(x, y) CHECK((x) >= (y)) 28 #define CHECK_EQ(x, y) CHECK((x) == (y)) 29 #define CHECK_NE(x, y) CHECK((x) != (y))
|