Searched refs:junk (Results 1 - 25 of 111) sorted by relevance

12345

/external/clang/test/Preprocessor/
H A Ddisabled-cond-diags2.c5 #endif junk // shouldn't produce diagnostics
9 #endif junk // expected-warning{{extra tokens at end of #endif directive}}
11 #if 1 junk // expected-error{{token is not a valid binary operator in a preprocessor subexpression}}
21 #if 1 junk
22 #else junk
23 #endif junk
27 #endif junk // expected-warning{{extra tokens at end of #endif directive}}
/external/clang/test/Sema/
H A Dvariadic-incomplete-arg-type.c6 void junk(int, ...);
11 junk(1, *error, (void)0); // expected-error {{argument type 'struct __CFError' is incomplete}} \
/external/valgrind/memcheck/tests/amd64/
H A Dxor-undef-amd64.c10 char* junk = malloc(48); local
11 assert(junk);
22 : : "r"(junk) : "r8", "rax", "cc"
31 : : "r"(junk) : "r8", "rax", "cc"
46 : : "r"(junk) : "mm7", "mm0", "cc", "memory"
58 : : "r"(junk) : "mm7", "mm0", "cc", "memory"
73 : : "r"(junk) : "rax", "xmm8", "xmm0", "cc", "memory"
85 : : "r"(junk) : "rax", "xmm8", "xmm0", "cc", "memory"
100 : : "r"(junk) : "rax", "xmm8", "xmm0", "cc", "memory"
112 : : "r"(junk)
[all...]
/external/valgrind/memcheck/tests/x86/
H A Dxor-undef-x86.c10 char* junk = malloc(48); local
11 assert(junk);
22 : : "r"(junk) : "edi", "eax", "cc"
31 : : "r"(junk) : "edi", "eax", "cc"
47 : : "r"(junk) : "esi", "mm7", "mm0", "cc", "memory"
60 : : "r"(junk) : "esi", "mm7", "mm0", "cc", "memory"
77 : : "r"(junk) : "esi", "xmm7", "xmm0", "cc", "memory"
91 : : "r"(junk) : "esi", "xmm7", "xmm0", "cc", "memory"
108 : : "r"(junk) : "esi", "xmm7", "xmm0", "cc", "memory"
122 : : "r"(junk)
[all...]
/external/ltp/testcases/kernel/fs/fs_maim/
H A Dbackbeat28 ($junk,$junk,$part1)=split(/\//,$ARGV[0]);
29 ($junk,$junk,$part2)=split(/\//,$ARGV[1]);
30 ($junk,$junk,$part3)=split(/\//,$ARGV[2]);
H A Dpartbeat56 ($junk,$junk,$device)=split(/\//,$target);
/external/syslinux/com32/menu/
H A Ddrain.c10 volatile char junk; local
14 rv = read(0, (char *)&junk, 1);
17 junk = 0;
/external/ltp/testcases/kernel/fs/stream/
H A Dstream04.c57 char *junk = "abcdefghijklmnopqrstuvwxyz"; local
81 fwrite(junk, sizeof(*junk), strlen(junk), stream)) == 0) {
86 if ((size_t) ret != strlen(junk)) {
88 "strlen(junk) = %zi != return value from fwrite = %zi",
89 strlen(junk), ret);
98 if ((inbuf = malloc(strlen(junk))) == 0) {
103 fread(inbuf, sizeof(*junk), strlen(junk), strea
[all...]
H A Dstream03.c53 char *junk = "abcdefghijklmnopqrstuvwxyz"; local
87 if (fwrite(junk, sizeof(*junk), strlen(junk), stream) == 0) {
94 if (pos != strlen(junk)) {
96 "strlen(junk)=%zi: file pointer descrepancy 2 (pos=%li)",
97 strlen(junk), pos);
113 if (fseek(stream, strlen(junk), 1) != 0) {
120 if (pos != strlen(junk)) {
122 "strlen(junk)
[all...]
/external/skia/src/core/
H A DSkRecords.cpp15 SkPathPriv::FirstDirection junk;
16 (void)SkPathPriv::CheapComputeFirstDirection(*this, &junk);
/external/skia/fuzz/
H A DFuzzScaleToSides.cpp40 volatile float junk = 0.0f; local
41 junk *= radius1;
42 junk *= radius2;
/external/skia/bench/
H A DColorPrivBench.cpp43 // We xor results of FourByteInterp into junk to make sure the function runs.
44 volatile SkPMColor junk = 0; variable
61 junk ^= SkFastFourByteInterp(src, dst, scale);
63 junk ^= SkFastFourByteInterp256(src, dst, scale);
65 junk ^= SkFourByteInterp(src, dst, scale);
67 junk ^= SkFourByteInterp256(src, dst, scale);
H A DScalarBench.cpp62 volatile bool junk = false; local
63 junk ^= (fArray[6] != 0.0f || fArray[7] != 0.0f || fArray[8] != 1.0f);
64 junk ^= (fArray[2] != 0.0f || fArray[5] != 0.0f);
81 volatile int32_t junk = 0; local
82 junk ^= (SkScalarAs2sCompliment(fArray[6]) |
85 junk ^= (SkScalarAs2sCompliment(fArray[2]) |
H A DMatrixBench.cpp56 volatile bool junk = false; variable
57 junk ^= (m0 == m1);
58 junk ^= (m1 == m2);
59 junk ^= (m2 == m0);
119 volatile int junk = 0; variable
120 junk ^= (fMatrix.getType());
122 junk ^= (fMatrix.getType());
124 junk ^= (fMatrix.getType());
126 junk ^= (fMatrix.getType());
128 junk
[all...]
/external/ltp/lib/
H A Dbytes_by_prefix.c78 char mult, junk; local
83 nconv = sscanf(s, "%f%c%c", &num, &mult, &junk);
126 char mult, junk; local
131 nconv = sscanf(s, "%f%c%c", &num, &mult, &junk);
178 char mult, junk; local
183 nconv = sscanf(s, "%lf%c%c", &num, &mult, &junk);
/external/icu/icu4j/samples/src/com/ibm/icu/samples/iuc/
H A DSupplementalUtilities.java52 int junk[] = {
64 for(int i=0;i<junk.length;i++) {
65 System.out.println(Integer.toString(junk[i]) + " -> " + Double.toString(ldml2d(junk[i])));
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
H A Dinet.py83 junk = dns.ipv4.inet_aton(text)
87 junk = dns.ipv6.inet_aton(text)
/external/clang/test/CodeGenCXX/
H A Ddebug-info-nodebug.cpp39 S2 junk; local
/external/openssh/
H A Dsandbox-null.c38 int junk; member in struct:ssh_sandbox
/external/lz4/examples/
H A Dcompress_functions.c131 for(int junk=0; junk<warm_up; junk++)
144 for(int junk=0; junk<warm_up; junk++)
157 for(int junk=0; junk<warm_up; junk++)
172 // for(int junk
[all...]
/external/clang/test/SemaCXX/
H A Dunknown-type-name.cpp98 template<typename T> int junk1(T::junk); // expected-warning{{variable templates are a C++14 extension}}
99 template<typename T> int junk2(T::junk) throw(); // expected-error{{missing 'typename'}}
100 template<typename T> int junk3(T::junk) = delete; // expected-error{{missing 'typename'}} variable
105 template<typename T> int junk4(T::junk j); // expected-error{{missing 'typename'}}
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml12 Stream.junk stream;
30 Stream.junk stream;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml14 Stream.junk stream;
35 Stream.junk stream;
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml12 Stream.junk stream;
30 Stream.junk stream;
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml14 Stream.junk stream;
35 Stream.junk stream;

Completed in 1135 milliseconds

12345