/external/syslinux/com32/menu/ |
H A D | drain.c | 10 volatile char junk; local 14 rv = read(0, (char *)&junk, 1); 17 junk = 0;
|
/external/valgrind/memcheck/tests/amd64/ |
H A D | xor-undef-amd64.c | 10 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 D | xor-undef-x86.c | 10 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/skqp/fuzz/ |
H A D | FuzzScaleToSides.cpp | 40 volatile float junk = 0.0f; local 41 junk *= radius1; 42 junk *= radius2;
|
/external/clang/test/CodeGenCXX/ |
H A D | debug-info-nodebug.cpp | 39 S2 junk; local
|
/external/ltp/testcases/kernel/fs/doio/ |
H A D | bytes_by_prefix.c | 75 char mult, junk; local 80 nconv = sscanf(s, "%f%c%c", &num, &mult, &junk); 123 char mult, junk; local 128 nconv = sscanf(s, "%f%c%c", &num, &mult, &junk); 175 char mult, junk; local 180 nconv = sscanf(s, "%lf%c%c", &num, &mult, &junk);
|
/external/ltp/testcases/kernel/fs/stream/ |
H A D | stream04.c | 57 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 D | stream03.c | 53 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/bench/ |
H A D | ColorPrivBench.cpp | 43 // 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 D | ScalarBench.cpp | 62 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]) |
|
/external/skqp/bench/ |
H A D | ColorPrivBench.cpp | 43 // 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 D | ScalarBench.cpp | 62 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]) |
|
/external/clang/test/SemaCXX/ |
H A D | unknown-type-name.cpp | 98 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/mesa3d/src/compiler/glsl/glcpp/ |
H A D | glcpp-parse.y | 348 | HASH_TOKEN IFDEF IDENTIFIER junk NEWLINE { 354 | HASH_TOKEN IFNDEF IDENTIFIER junk NEWLINE { 677 junk: label
|
/external/libvpx/libvpx/test/ |
H A D | test_vector_test.cc | 61 char junk[128]; local 64 const int res = fscanf(md5_file_, "%s %s", expected_md5, junk);
|
H A D | byte_alignment_test.cc | 138 char junk[128]; local 141 const int res = fscanf(md5_file_, "%s %s", expected_md5, junk);
|
/external/mesa3d/src/compiler/glsl/tests/ |
H A D | varyings_test.cpp | 73 ir_variable *junk[VARYING_SLOT_TESS_MAX]; member in class:link_varyings 131 junk); 159 junk); 161 EXPECT_EQ(clipdistance, junk[VARYING_SLOT_CLIP_DIST0]); 186 junk); 188 EXPECT_EQ(culldistance, junk[VARYING_SLOT_CULL_DIST0]); 208 junk); 241 junk); 272 junk); 289 junk); [all...] |
/external/ltp/testcases/kernel/syscalls/setregid/ |
H A D | setregid03.c | 178 struct group *junk; local 189 junk = getgrnam(#group); \ 190 if (junk == NULL) { \ 193 GID16_CHECK(junk->gr_gid, setregid, NULL); \ 194 group = *(junk); \
|
/external/syslinux/com32/chain/ |
H A D | utility.c | 58 char junk; local 63 cnt = read(0, &junk, 1); 69 cnt = read(0, &junk, 1);
|
/external/unicode/ |
H A D | CVTUTF7.C | 186 unsigned long junk; local 263 junk = READ_N_BITS(BITS_IN_BUFFER); 264 if (junk)
|
/external/zlib/src/examples/ |
H A D | gzjoin.c | 287 unsigned char *junk; /* buffer for uncompressed data -- discarded */ local 299 junk = malloc(CHUNK); 306 if (junk == NULL || ret != Z_OK) 328 strm.next_out = junk; 416 free(junk);
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
H A D | minidump_writer_unittest.cc | 382 uint8_t junk; local 383 const int nr = HANDLE_EINTR(read(fds[0], &junk, sizeof(junk))); 384 ASSERT_EQ(static_cast<ssize_t>(sizeof(junk)), nr); 626 uint8_t junk; local 627 ASSERT_EQ(read(fds[0], &junk, sizeof(junk)), 628 static_cast<ssize_t>(sizeof(junk)));
|
/external/icu/icu4c/source/test/intltest/ |
H A D | uobjtest.cpp | 502 char junk[800]; local 503 sprintf(junk, " %4d:\t%p\t%s\t%s\n", 505 logln(UnicodeString(junk));
|
/external/libevent/test/ |
H A D | regress_iocp.c | 243 char junk[1024]; local 250 for (i = 0; i < (int)sizeof(junk); ++i) 251 junk[i] = (char)(i); 267 evbuffer_add(wbuf, junk, sizeof(junk)); 271 evbuffer_add(rbuf, junk, sizeof(junk)); 274 tt_int_op(evbuffer_get_length(buf), ==, sizeof(junk));
|
/external/ltp/testcases/network/sockets/ |
H A D | ltpServer.c | 223 void *ltp_udp_server_queue(void *junk) argument 263 void *ltp_tcp_server_queue(void *junk) argument 387 void *ltp_multi_server_queue(void *junk) argument
|