Searched defs:bad (Results 1 - 25 of 79) sorted by relevance

1234

/external/valgrind/memcheck/tests/
H A Dexecve1.c6 char* bad[2] = { (char*)1, NULL }; local
9 execve(null_filename, bad, bad);
H A Dvarinforestrict.c55 void *bad = malloc (16); local
56 bad_restrict_ptr (bad);
57 free (bad);
/external/boringssl/src/crypto/x509v3/
H A Dtab_test.c80 int prev = -1, bad = 0; local
89 bad = 1;
93 if (bad) {
/external/clang/test/SemaCXX/
H A Dfunction-pointer-arguments.cpp20 void bad() { function in namespace:PR16570
H A Doperator-arrow-depth.cpp24 B<MAX/2 + 1> bad; variable
25 int m = bad->n; // expected-error-re {{use of 'operator->' on type 'B<{{2|10|128}} / 2 + 1>' would invoke a sequence of more than {{2|10|128}} 'operator->' calls}}
H A Dqual-id-test.cpp36 struct bad struct
57 a.bad::x(); // expected-error{{'bad::x' is not a member of class 'A::sub'}}
78 a->bad::x(); // expected-error{{'bad::x' is not a member of class 'A::sub'}}
122 a.bad::x(); // expected-error{{'bad::x' is not a member of class 'A::sub'}}
H A Dcxx0x-nontrivial-union.cpp25 union bad { union
H A Dvector.cpp293 typedef bool bad __attribute__((__vector_size__(16))); // expected-error {{invalid vector element type 'bool'}} typedef
/external/testng/src/test/java/test/override/
H A DOverrideSampleTest.java12 public void bad() { method in class:OverrideSampleTest
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/
H A Dignore_0xff.pass.cpp22 int bad=-1; local
24 os << "aaaabbbb" << static_cast<char>(bad)
/external/clang/test/Sema/
H A Dformat-strings-ms.c51 double bad; local
52 printf("%wc", bad); // expected-warning{{format specifies type 'wint_t' (aka 'int') but the argument has type 'double'}}
53 printf("%wC", bad); // expected-warning{{format specifies type 'wchar_t' (aka 'unsigned short') but the argument has type 'double'}}
54 printf("%C", bad); // expected-warning{{format specifies type 'wchar_t' (aka 'unsigned short') but the argument has type 'double'}}
55 printf("%ws", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *') but the argument has type 'double'}}
56 printf("%wS", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *') but the argument has type 'double'}}
57 printf("%S", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *') but the argument has type 'double'}}
58 scanf("%wc", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *') but the argument has type 'double *'}}
59 scanf("%wC", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *') but the argument has type 'double *'}}
60 scanf("%C", &bad); // expecte
68 double bad; local
[all...]
/external/avb/test/
H A Davb_util_unittest.cc70 AvbFooter bad; local
104 // Check for bad magic.
105 bad = h;
106 bad.magic[0] = 'x';
107 EXPECT_EQ(0, avb_footer_validate_and_byteswap(&bad, &s));
109 // Check for bad major version.
110 bad = h;
111 bad.version_major = htobe32(AVB_FOOTER_VERSION_MAJOR + 1);
112 EXPECT_EQ(0, avb_footer_validate_and_byteswap(&bad, &s));
118 AvbKernelCmdlineDescriptor bad; local
156 AvbHashtreeDescriptor bad; local
245 AvbHashDescriptor bad; local
288 AvbChainPartitionDescriptor bad; local
331 AvbPropertyDescriptor bad; local
[all...]
/external/webrtc/webrtc/p2p/base/
H A Dstunserver_unittest.cc106 const char* bad = "this is a completely nonsensical message whose only " local
109 Send(bad, static_cast<int>(strlen(bad)));
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dhalt_on_error-signals.c27 volatile char bad[2] = {1, }; variable
33 bad[idx] = 0;
88 __asan_poison_memory_region(&bad, sizeof(bad));
/external/e2fsprogs/lib/blkid/
H A Dcache.c142 blkid_tag bad = list_entry(tag->bit_names.next, local
147 bad->bit_name, bad->bit_val));
148 blkid_free_tag(bad);
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
H A Dallocate_shared_cxx03.pass.cpp72 int const bad = -1; local
87 std::shared_ptr<Two> p = std::allocate_shared<Two>(Alloc(), i, bad);
94 std::shared_ptr<Three> p = std::allocate_shared<Three>(Alloc(), i, bad, bad);
105 int const bad = -1; local
106 std::shared_ptr<Two> p = std::allocate_shared<Two>(test_allocator<Two>(54), i, bad);
/external/skia/tests/
H A DSkBlend_optsTest.cpp41 uint32_t src, uint32_t good, uint32_t bad) {
43 "%s - missmatch at %d, %d src: %08x good: %08x bad: %08x",
44 resourceName.c_str(), x, y, src, good, bad);
40 mismatch_message(std::string resourceName, int x, int y, uint32_t src, uint32_t good, uint32_t bad) argument
/external/clang/lib/AST/
H A DComment.cpp38 struct bad {}; struct in namespace:clang::comments::__anon1056
46 static inline bad implements_child_begin_end(
48 return bad();
/external/libnl/python/netlink/
H A Dutil.py63 def bad(t): function
/external/syslinux/win/
H A Dntfssect.c48 BOOL bad, ok; local
53 bad = (
59 if (bad)
277 BOOL bad; local
278 bad = (
286 if (bad)
/external/v8/tools/clang/plugins/tests/
H A Dbase_refcounted.cpp63 PublicRefCountedDtorInHeader bad; local
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp3.cpp184 template<typename T> void bad() { function in class:cxx1z_direct_enum_init::E
239 bad<A>(); // expected-note 4{{instantiation of}}
240 bad<B>(); // expected-note 4{{instantiation of}}
241 bad<C>(); // expected-note 4{{instantiation of}}
242 bad<D>(); // expected-note 4{{instantiation of}}
243 bad<E>(); // expected-note 4{{instantiation of}}
/external/e2fsprogs/e2fsck/
H A Dea_refcount.c305 const char *bad = "bad refcount"; local
308 fprintf(out, "%s: count > size\n", bad);
315 bad, i-1, refcount->list[i-1].ea_blk,
/external/libjpeg-turbo/
H A Djdphuff.c98 boolean is_DC_band, bad; local
107 bad = FALSE;
110 bad = TRUE;
114 bad = TRUE;
117 bad = TRUE;
122 bad = TRUE;
125 bad = TRUE;
132 if (bad)
/external/pdfium/third_party/libjpeg/
H A Dfpdfapi_jdphuff.c95 boolean is_DC_band, bad; local
103 bad = FALSE;
106 bad = TRUE;
110 bad = TRUE;
113 bad = TRUE;
118 bad = TRUE;
121 bad = TRUE;
128 if (bad)

Completed in 1371 milliseconds

1234