Searched defs:CHECK (Results 1 - 25 of 81) sorted by relevance

1234

/external/llvm/test/MC/AArch64/
H A Dcyclone-crc.s7 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 Dlogging.h25 #define CHECK(expr) \ macro
27 printf("CHECK failed\n"); \
/external/clang/test/Analysis/
H A Dtraversal-path-unification.c9 #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 Dbitwise-ops.c4 #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/chromium-trace/catapult/systrace/atrace_helper/jni/
H A Dlogging.h14 "FAILED CHECK(%s) @ %s:%d (errno: %s)\n", #COND, __FILE__, __LINE__, \
17 #define CHECK(x) \ macro
/external/brotli/research/
H A Dread_dist.h22 #ifndef CHECK
23 #define CHECK(X) if (!(X)) exit(EXIT_FAILURE); macro
32 CHECK(fread(copy, sizeof(int), 1, fin) == 1);
37 CHECK(fread(pos, sizeof(int), 1, fin) == 1);
38 CHECK(fread(dist, sizeof(int), 1, fin) == 1);
43 CHECK(fread(pos, sizeof(int), 1, fin) == 1);
44 CHECK(fread(dist, sizeof(int), 1, fin) == 1);
/external/dtc/tests/
H A Dadd_subnode_with_nops.c34 #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 Dappendprop1.c34 #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 Dappendprop2.c34 #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 Dcheck_path.c27 #define CHECK(code) \ macro
47 CHECK(fdt_open_into(dt, copy, FDT_COPY_SIZE));
H A Doverlay_bad_fixup.c28 #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 Drw_tree1.c34 #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 Dsw_tree1.c73 #define CHECK(code) \ macro
117 CHECK(fdt_create(fdt, size));
121 CHECK(fdt_add_reservemap_entry(fdt, TEST_ADDR_1, TEST_SIZE_1));
123 CHECK(fdt_add_reservemap_entry(fdt, TEST_ADDR_2, TEST_SIZE_2));
124 CHECK(fdt_finish_reservemap(fdt));
126 CHECK(fdt_begin_node(fdt, ""));
127 CHECK(fdt_property_string(fdt, "compatible", "test_tree1"));
128 CHECK(fdt_property_u32(fdt, "prop-int", TEST_VALUE_1));
129 CHECK(fdt_property_u64(fdt, "prop-int64", TEST_VALUE64_1));
130 CHECK(fdt_property_strin
[all...]
/external/libexif/test/
H A Dtest-integers.c39 # 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 Dcargstest.c16 #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/pdfium/third_party/base/
H A Dlogging.h18 #define CHECK(condition) \ macro
28 #define DCHECK CHECK
29 #define DCHECK_EQ(x, y) CHECK((x) == (y))
/external/clang/test/CodeGenCXX/
H A Dbitfield-layout.cpp1 // 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...]
/external/mesa3d/src/gallium/tests/unit/
H A Dpipe_barrier_test.c62 #define CHECK(_cond) \ macro
77 CHECK(p_atomic_read(&proceeded) == 0);
82 CHECK(p_atomic_read(&waiting) == NUM_THREADS);
122 CHECK(p_atomic_read(&proceeded) == NUM_THREADS);
/external/pcre/pcrecpp/
H A Dpcre_stringpiece_unittest.cc15 // 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 Dvoe_cpu_test.cc29 #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/libffi/testsuite/libffi.call/
H A Dffitest.h18 #define CHECK(x) (void)(!(x) ? (abort(), 1) : 0) macro
/external/libxcam/tests/
H A Dtest_common.h31 #undef CHECK macro
40 #define CHECK(ret, msg, ...) \ macro
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
H A Dffitest.h18 #define CHECK(x) (void)(!(x) ? (abort(), 1) : 0) macro
/external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
H A Dffitest.h18 #define CHECK(x) (void)(!(x) ? (abort(), 1) : 0) macro
/external/tensorflow/tensorflow/contrib/lite/tools/
H A Dbenchmark_model.cc35 #define CHECK(x) \ macro
49 CHECK(graph.c_str());

Completed in 708 milliseconds

1234