Home
last modified time | relevance | path

Searched refs:bad (Results 1 – 25 of 2276) sorted by relevance

12345678910>>...92

/external/flac/test/cuesheets/
DMakefile.am20 bad.000.CATALOG_multiple.cue \
21 bad.001.CATALOG_missing_number.cue \
22 bad.002.CATALOG_number_too_long.cue \
23 bad.003.CATALOG_not_13_digits.cue \
24 bad.030.FLAGS_multiple.cue \
25 bad.031.FLAGS_wrong_place_1.cue \
26 bad.032.FLAGS_wrong_place_2.cue \
27 bad.060.INDEX_wrong_place.cue \
28 bad.061.INDEX_missing_number.cue \
29 bad.062.INDEX_invalid_number_1.cue \
[all …]
/external/e2fsprogs/tests/f_h_reindex/
Dexpect.15 Problem in HTREE directory inode 16001: block #1 has bad max hash
6 Problem in HTREE directory inode 16001: block #2 has bad min hash
7 Problem in HTREE directory inode 16001: block #2 has bad max hash
8 Problem in HTREE directory inode 16001: block #3 has bad min hash
9 Problem in HTREE directory inode 16001: block #3 has bad max hash
10 Problem in HTREE directory inode 16001: block #4 has bad min hash
11 Problem in HTREE directory inode 16001: block #4 has bad max hash
12 Problem in HTREE directory inode 16001: block #5 has bad min hash
13 Problem in HTREE directory inode 16001: block #5 has bad max hash
14 Problem in HTREE directory inode 16001: block #6 has bad min hash
[all …]
/external/vboot_reference/tests/futility/
Dtest_gbb_utility.sh112 cat ${TMP}.blob | ${REPLACE} 0x4 2 > ${TMP}.blob.bad
113 if ${FUTILITY} gbb_utility ${TMP}.blob.bad; then false; fi
116 cat ${TMP}.blob | ${REPLACE} 0x8 0x81 > ${TMP}.blob.bad
117 if ${FUTILITY} gbb_utility ${TMP}.blob.bad; then false; fi
120 cat ${TMP}.blob | ${REPLACE} 0x8 0x7f > ${TMP}.blob.bad
121 if ${FUTILITY} gbb_utility ${TMP}.blob.bad; then false; fi
124 cat ${TMP}.blob | ${REPLACE} 0x8f 0x41 > ${TMP}.blob.bad
125 if ${FUTILITY} gbb_utility ${TMP}.blob.bad; then false; fi
135 cat ${TMP}.blob | ${REPLACE} 0x8f 0x41 > ${TMP}.blob.bad
136 if ${FUTILITY} gbb_utility ${TMP}.blob.bad; then false; fi
[all …]
/external/clang/test/Sema/
Dformat-strings-ms.c51 double bad; in w_test() local
52 …printf("%wc", bad); // expected-warning{{format specifies type 'wint_t' (aka 'int') but the argume… in w_test()
53 …printf("%wC", bad); // expected-warning{{format specifies type 'wchar_t' (aka 'unsigned short') bu… in w_test()
54 …printf("%C", bad); // expected-warning{{format specifies type 'wchar_t' (aka 'unsigned short') but… in w_test()
55 …printf("%ws", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
56 …printf("%wS", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
57 …printf("%S", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *')… in w_test()
58 …scanf("%wc", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
59 …scanf("%wC", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
60 …scanf("%C", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *')… in w_test()
[all …]
/external/llvm-project/clang/test/Sema/
Dformat-strings-ms.c51 double bad; in w_test() local
52 …printf("%wc", bad); // expected-warning{{format specifies type 'wint_t' (aka 'unsigned short') but… in w_test()
53 …printf("%wC", bad); // expected-warning{{format specifies type 'wchar_t' (aka 'unsigned short') bu… in w_test()
54 …printf("%C", bad); // expected-warning{{format specifies type 'wchar_t' (aka 'unsigned short') but… in w_test()
55 …printf("%ws", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
56 …printf("%wS", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
57 …printf("%S", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *')… in w_test()
58 …scanf("%wc", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
59 …scanf("%wC", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
60 …scanf("%C", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *')… in w_test()
[all …]
/external/skia/resources/sksl/folding/
DShortCircuitBoolFolding.sksl7 int ok = 0, bad = 0;
10 if (true && expr) { ++ok; } else { ++bad; } // -> (expr)
11 if (false && expr) { ++bad; } else { ++ok; } // -> (false) -> block removed
12 if (true ^^ expr) { ++bad; } else { ++ok; } // -> unchanged
13 if (false ^^ expr) { ++ok; } else { ++bad; } // -> (expr)
14 if (true || expr) { ++ok; } else { ++bad; } // -> (true)
15 if (false || expr) { ++ok; } else { ++bad; } // -> (expr)
16 if (true == expr) { ++ok; } else { ++bad; } // -> (expr)
17 if (false == expr) { ++bad; } else { ++ok; } // -> unchanged
18 if (true != expr) { ++bad; } else { ++ok; } // -> unchanged
[all …]
/external/avb/test/
Davb_util_unittest.cc71 AvbFooter bad; in TEST_F() local
106 bad = h; in TEST_F()
107 bad.magic[0] = 'x'; in TEST_F()
108 EXPECT_EQ(0, avb_footer_validate_and_byteswap(&bad, &s)); in TEST_F()
111 bad = h; in TEST_F()
112 bad.version_major = htobe32(AVB_FOOTER_VERSION_MAJOR + 1); in TEST_F()
113 EXPECT_EQ(0, avb_footer_validate_and_byteswap(&bad, &s)); in TEST_F()
119 AvbKernelCmdlineDescriptor bad; in TEST_F() local
144 bad = h; in TEST_F()
145 bad.parent_descriptor.tag = htobe64(0xf00dd00d); in TEST_F()
[all …]
/external/flac/test/
Dcuesheet.ok1 NEGATIVE cuesheets/bad.000.CATALOG_multiple.cue
3 NEGATIVE cuesheets/bad.001.CATALOG_missing_number.cue
5 NEGATIVE cuesheets/bad.002.CATALOG_number_too_long.cue
7 NEGATIVE cuesheets/bad.003.CATALOG_not_13_digits.cue
9 NEGATIVE cuesheets/bad.030.FLAGS_multiple.cue
11 NEGATIVE cuesheets/bad.031.FLAGS_wrong_place_1.cue
13 NEGATIVE cuesheets/bad.032.FLAGS_wrong_place_2.cue
15 NEGATIVE cuesheets/bad.060.INDEX_wrong_place.cue
17 NEGATIVE cuesheets/bad.061.INDEX_missing_number.cue
19 NEGATIVE cuesheets/bad.062.INDEX_invalid_number_1.cue
[all …]
/external/llvm/test/CodeGen/PowerPC/
Dfast-isel-fcmp-nan.ll9 br i1 %t1, label %good, label %bad
11 bad:
25 br i1 %t1, label %good, label %bad
27 bad:
41 br i1 %t1, label %good, label %bad
43 bad:
56 br i1 %t1, label %good, label %bad
58 bad:
71 br i1 %t1, label %good, label %bad
73 bad:
[all …]
/external/tensorflow/tensorflow/core/framework/
Dnode_def_util_test.cc58 void ExpectFailure(const NodeDef& bad, const OpDef& op_def, in ExpectFailure() argument
60 Status status = ValidateNodeDef(bad, op_def); in ExpectFailure()
62 EXPECT_FALSE(status.ok()) << "NodeDef: " << SummarizeNodeDef(bad) in ExpectFailure()
67 << status << "; NodeDef: " << SummarizeNodeDef(bad) in ExpectFailure()
72 << "NodeDef: " << SummarizeNodeDef(bad) in ExpectFailure()
87 NodeDef bad = node_def; in TEST() local
88 bad.set_op("Wrong"); in TEST()
89 ExpectFailure(bad, op, "NodeDef op 'Wrong' does not match Op<name=In;"); in TEST()
92 bad = node_def; in TEST()
93 bad.clear_attr(); in TEST()
[all …]
/external/llvm-project/llvm/test/CodeGen/PowerPC/
Dfast-isel-fcmp-nan.ll9 br i1 %t1, label %good, label %bad
11 bad:
25 br i1 %t1, label %good, label %bad
27 bad:
41 br i1 %t1, label %good, label %bad
43 bad:
56 br i1 %t1, label %good, label %bad
58 bad:
71 br i1 %t1, label %good, label %bad
73 bad:
[all …]
/external/tcpdump/tests/
Dl2tp-avp-overflow.out1 IP (tos 0x30, ttl 48, id 12331, offset 0, flags [none], proto UDP (17), length 12336, bad cksum 1f5…
3 IP (tos 0x30, ttl 48, id 12336, offset 0, flags [none], proto UDP (17), length 12336, bad cksum 1f5…
5 IP (tos 0x30, ttl 48, id 12331, offset 0, flags [none], proto UDP (17), length 8752, bad cksum 1f51…
7 IP (tos 0x30, ttl 48, id 12336, offset 0, flags [none], proto UDP (17), length 12336, bad cksum 1f5…
9 IP (tos 0x30, ttl 48, id 12331, offset 0, flags [none], proto UDP (17), length 12336, bad cksum 1f5…
11 IP (tos 0x30, ttl 48, id 12336, offset 0, flags [none], proto UDP (17), length 12336, bad cksum 1f5…
12 127.0.0.0.0 > 0.0.0.0.2048: UDP, bad length 17704 > 12308
14 IP (tos 0x30, ttl 48, id 12336, offset 0, flags [none], proto UDP (17), length 12336, bad cksum 1f5…
16 IP (tos 0x30, ttl 48, id 12331, offset 0, flags [none], proto UDP (17), length 8752, bad cksum 1f51…
18 IP (tos 0x30, ttl 48, id 12336, offset 0, flags [none], proto UDP (17), length 12336, bad cksum 1f5…
[all …]
Dikev2fourv.out2 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0765 -> 0xf5df!] isakmp 2.0 msgid 00000000 coo…
22 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0629 -> 0x0cd0!] isakmp 2.0 msgid 00000000 coo…
25 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0785 -> 0x7702!] isakmp 2.0 msgid 00000000 coo…
46 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x071d -> 0x8650!] isakmp 2.0 msgid 00000000 coo…
58 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07d9 -> 0xb2d6!] isakmp 2.0 msgid 00000001 coo…
61 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0689 -> 0x0748!] isakmp 2.0 msgid 00000001 coo…
64 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07e9 -> 0x35ac!] isakmp 2.0 msgid 00000002 coo…
67 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x06c9 -> 0xdeaf!] isakmp 2.0 msgid 00000003 coo…
70 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0xc72b!] isakmp 2.0 msgid 00000002 coo…
73 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0x4119!] isakmp 2.0 msgid 00000003 coo…
[all …]
Dikev2fourv4.out2 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0765 -> 0xf5df!] isakmp 2.0 msgid 00000000 coo…
22 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0629 -> 0x0cd0!] isakmp 2.0 msgid 00000000 coo…
25 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0785 -> 0x7702!] isakmp 2.0 msgid 00000000 coo…
46 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x071d -> 0x8650!] isakmp 2.0 msgid 00000000 coo…
58 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07d9 -> 0xb2d6!] isakmp 2.0 msgid 00000001 coo…
61 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0689 -> 0x0748!] isakmp 2.0 msgid 00000001 coo…
64 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07e9 -> 0x35ac!] isakmp 2.0 msgid 00000002 coo…
67 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x06c9 -> 0xdeaf!] isakmp 2.0 msgid 00000003 coo…
70 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0xc72b!] isakmp 2.0 msgid 00000002 coo…
73 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0x4119!] isakmp 2.0 msgid 00000003 coo…
[all …]
/external/mesa3d/src/compiler/glsl/
Dast_type.cpp829 ast_type_qualifier bad; in validate_flags() local
830 bad.flags.i = this->flags.i & ~allowed_flags.flags.i; in validate_flags()
831 if (bad.flags.i == 0) in validate_flags()
840 bad.flags.q.invariant ? " invariant" : "", in validate_flags()
841 bad.flags.q.precise ? " precise" : "", in validate_flags()
842 bad.flags.q.constant ? " constant" : "", in validate_flags()
843 bad.flags.q.attribute ? " attribute" : "", in validate_flags()
844 bad.flags.q.varying ? " varying" : "", in validate_flags()
845 bad.flags.q.in ? " in" : "", in validate_flags()
846 bad.flags.q.out ? " out" : "", in validate_flags()
[all …]
/external/igt-gpu-tools/tests/vc4_ci/
Dvc4.testlist7 igt@vc4_label_bo@set-bad-handle
8 igt@vc4_label_bo@set-bad-name
10 igt@vc4_lookup_fail@bad-color-write
19 igt@vc4_tiling@get-bad-handle
20 igt@vc4_tiling@set-bad-handle
21 igt@vc4_tiling@get-bad-flags
22 igt@vc4_tiling@set-bad-flags
23 igt@vc4_tiling@get-bad-modifier
24 igt@vc4_tiling@set-bad-modifier
27 igt@vc4_wait_bo@bad-bo
[all …]
/external/libutf/
Drune.c97 goto bad; in charntorune()
100 goto bad; in charntorune()
103 goto bad; in charntorune()
119 goto bad; in charntorune()
123 goto bad; in charntorune()
137 goto bad; in charntorune()
141 goto bad; in charntorune()
143 goto bad; in charntorune()
154 bad: in charntorune()
190 goto bad; in chartorune()
[all …]
/external/deqp-deps/glslang/glslang/MachineIndependent/
Dlimits.cpp67 : loopId(id), symbolTable(st), bad(false) { } in TInductiveTraverser()
75 bool bad; member in glslang::TInductiveTraverser
88 bad = true; in visitBinary()
100 bad = true; in visitUnary()
119 bad = true; in visitAggregate()
141 if (it.bad) in inductiveLoopBodyCheck()
153 TIndexTraverser(const TIdSetType& ids) : inductiveLoopIds(ids), bad(false) { } in TIndexTraverser()
157 bool bad; member in glslang::TIndexTraverser
169 bad = true; in visitSymbol()
178 bad = true; in visitAggregate()
[all …]
/external/python/cpython3/Lib/test/
Dtest_robotparser.py15 bad = [] variable in BaseRobotTest
36 for url in self.bad:
53 bad = ['/cyberworld/map/index.html', '/tmp/xxx', '/foo.html'] variable in UserAgentWildcardTest
70 bad = ['/cyberworld/map/index.html'] variable in CrawlDelayAndCustomAgentTest
85 bad = ['/cyberworld/map/index.html'] variable in SitemapTest
97 bad = ['/cyberworld/map/index.html', '/', '/tmp/'] variable in RejectAllRobotsTest
106 for url in self.good + self.bad:
147 bad = ['/tmp', '/tmp.html', '/tmp/a.html', '/a%3cd.html', '/a%3Cd.html', variable in CrawlDelayAndRequestRateTest
166 bad = ['/tmp/', '/tmp/a.html', '/a%3cd.html', '/a%3Cd.html', '/a/b.html', variable in InvalidRequestRateTest
180 bad = [] variable in InvalidCrawlDelayTest
[all …]
/external/llvm-project/libcxx/test/std/input.output/iostreams.base/ios/iostate.flags/
Dbad.pass.cpp27 assert(ios.bad()); in main()
29 assert(ios.bad()); in main()
34 assert(!ios.bad()); in main()
36 assert(!ios.bad()); in main()
38 assert(!ios.bad()); in main()
40 assert(ios.bad()); in main()
/external/libcxx/test/std/input.output/iostreams.base/ios/iostate.flags/
Dbad.pass.cpp26 assert(ios.bad()); in main()
28 assert(ios.bad()); in main()
33 assert(!ios.bad()); in main()
35 assert(!ios.bad()); in main()
37 assert(!ios.bad()); in main()
39 assert(ios.bad()); in main()
/external/toolchain-utils/afdo_tools/bisection/
Dafdo_prof_analysis.py168 def bisect_profiles(decider, good, bad, common_funcs, lo, hi): argument
199 lo_mid_prof[func] = bad[func]
201 mid_hi_prof[func] = bad[func]
207 result = bisect_profiles(decider, good, bad, common_funcs, lo, mid)
211 result = bisect_profiles(decider, good, bad, common_funcs, mid, hi)
218 problem_range = range_search(decider, good, bad, common_funcs, lo, hi)
227 def bisect_profiles_wrapper(decider, good, bad, perform_check=True): argument
235 if decider.run(bad, save_run=False) != StatusEnum.BAD_STATUS:
238 common_funcs = sorted(func for func in good if func in bad)
247 results = bisect_profiles(decider, good, bad, common_funcs, 0,
[all …]
/external/e2fsprogs/tests/f_bbinode/
Dexpect.13 Entry 'a6' in / (2) points to inode (17) located in a bad block.
6 Entry 'a7' in / (2) points to inode (18) located in a bad block.
9 Entry 'a8' in / (2) points to inode (19) located in a bad block.
12 Entry 'b1' in / (2) points to inode (20) located in a bad block.
15 Entry 'b2' in / (2) points to inode (21) located in a bad block.
18 Entry 'b3' in / (2) points to inode (22) located in a bad block.
21 Entry 'b4' in / (2) points to inode (23) located in a bad block.
24 Entry 'b5' in / (2) points to inode (24) located in a bad block.
/external/selinux/libsepol/src/
Dpolicydb.c1926 goto bad; in mls_read_semantic_level_helper()
1935 goto bad; in mls_read_semantic_level_helper()
1945 goto bad; in mls_read_semantic_level_helper()
1953 bad: in mls_read_semantic_level_helper()
2079 goto bad; in perm_read()
2083 goto bad; in perm_read()
2088 goto bad; in perm_read()
2092 bad: in perm_read()
2112 goto bad; in common_read()
2116 goto bad; in common_read()
[all …]
/external/one-true-awk/testdir/
DT.flags6 grep '[Uu]sage' foo >/dev/null || echo 'T.flags: bad usage'
9 grep 'no program' foo >/dev/null || echo 'T.flags: bad no program'
12 grep 'can.t open' foo >/dev/null || echo 'T.flags: bad can.t open program'
15 grep 'can.t open' foo >/dev/null || echo 'T.flags: bad can.t open program 2'
18 grep 'unknown option' foo >/dev/null || echo 'T.flags: bad unknown option'
21 grep 'no field separator' foo >/dev/null || echo 'T.flags: bad missing field separator'
24 grep 'field separator FS is empty' foo >/dev/null || echo 'T.flags: bad empty field separator'

12345678910>>...92