HomeSort by relevance Sort by last modified time
    Searched defs:junk (Results 1 - 25 of 49) sorted by null

1 2

  /external/valgrind/memcheck/tests/amd64/
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) : "rax", "xmm8", "xmm0", "cc", "memory
    [all...]
  /external/valgrind/memcheck/tests/x86/
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) : "esi", "xmm7", "xmm0", "cc", "memory
    [all...]
  /external/openssh/
sandbox-null.c 38 int junk; member in struct:ssh_sandbox
cipher.c 304 u_char *junk, *discard; local
358 if ((junk = malloc(cipher->discard_len)) == NULL ||
360 if (junk != NULL)
361 free(junk);
365 ret = EVP_Cipher(&cc->evp, discard, junk, cipher->discard_len);
367 free(junk);
  /bootable/recovery/tests/
asn1_decoder_test.cpp 42 uint8_t* junk; local
44 EXPECT_FALSE(asn1_oid_get(ctx, &junk, &length));
45 EXPECT_FALSE(asn1_octet_string_get(ctx, &junk, &length));
  /external/clang/test/SemaCXX/
unknown-type-name.cpp 96 template<typename T> int junk1(T::junk); // expected-warning{{variable templates are a C++14 extension}}
97 template<typename T> int junk2(T::junk) throw(); // expected-error{{missing 'typename'}}
98 template<typename T> int junk3(T::junk) = delete; // expected-error{{missing 'typename'}} expected-warning{{C++11}} variable
99 template<typename T> int junk4(T::junk j); // expected-error{{missing 'typename'}}
  /external/libvpx/libvpx/test/
test_vector_test.cc 49 char junk[128]; local
52 const int res = fscanf(md5_file_, "%s %s", expected_md5, junk);
external_frame_buffer_test.cc 230 char junk[128]; local
233 const int res = fscanf(md5_file_, "%s %s", expected_md5, junk);
  /external/mesa3d/src/glsl/glcpp/
glcpp-parse.y 285 | HASH_IFDEF IDENTIFIER junk NEWLINE {
290 | HASH_IFNDEF IDENTIFIER junk NEWLINE {
489 junk: label
    [all...]
  /external/skia/bench/
ColorPrivBench.cpp 37 // We xor results of FourByteInterp into junk to make sure the function runs.
38 volatile SkPMColor junk = 0; variable
55 junk ^= SkFastFourByteInterp(src, dst, scale);
57 junk ^= SkFastFourByteInterp256(src, dst, scale);
59 junk ^= SkFourByteInterp(src, dst, scale);
61 junk ^= SkFourByteInterp256(src, dst, scale);
ScalarBench.cpp 63 volatile bool junk = false; local
64 junk ^= (fArray[6] != 0.0f || fArray[7] != 0.0f || fArray[8] != 1.0f);
65 junk ^= (fArray[2] != 0.0f || fArray[5] != 0.0f);
82 volatile int32_t junk = 0; local
83 junk ^= (SkScalarAs2sCompliment(fArray[6]) |
86 junk ^= (SkScalarAs2sCompliment(fArray[2]) |
PMFloatBench.cpp 40 // Unlike blackhole, junk can and probably will be a register.
41 uint32_t junk = 0; variable
87 junk ^= back[i];
90 blackhole ^= junk;
MatrixBench.cpp 57 volatile bool junk = false; local
58 junk ^= (m0 == m1);
59 junk ^= (m1 == m2);
60 junk ^= (m2 == m0);
120 volatile int junk = 0; local
121 junk ^= (fMatrix.getType());
123 junk ^= (fMatrix.getType());
125 junk ^= (fMatrix.getType());
127 junk ^= (fMatrix.getType());
129 junk ^= (fMatrix.getType())
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
test_vector_test.cc 46 char junk[128]; local
49 const int res = fscanf(md5_file_, "%s %s", expected_md5, junk);
external_frame_buffer_test.cc 227 char junk[128]; local
230 const int res = fscanf(md5_file_, "%s %s", expected_md5, junk);
  /ndk/sources/android/support/src/stdio/i386/
_fpmath.h 36 unsigned int junk :16; member in struct:IEEEl2bits::__anon27874
41 unsigned int junk :16; member in struct:IEEEl2bits::__anon27875
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl_lite.cc 202 char junk[4096]; local
205 int bytes = Read(junk, min(count - skipped,
206 implicit_cast<int>(sizeof(junk))));
  /external/zlib/src/examples/
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/
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/
uobjtest.cpp 495 char junk[800]; local
496 sprintf(junk, " %4d:\t%p\t%s\t%s\n",
498 logln(UnicodeString(junk));
  /external/mdnsresponder/mDNSPosix/
mDNSUNP.c 223 int junk; local
483 junk = close(sockfd);
484 assert(junk == 0);
487 junk = close(sockf6);
488 assert(junk == 0);
  /external/mesa3d/src/glsl/
ralloc.c 392 char junk; local
403 (void)junk;
405 size = vsnprintf(&junk, 1, fmt, args);
  /external/skia/src/core/
SkRecords.h 208 SkPath::Direction junk; local
209 (void)this->cheapComputeDirection(&junk);
  /frameworks/base/tests/CoreTests/android/core/
HeapTest.java 159 Object junk[] = new Object[NUM_OBJECTS]; local
166 while (i < junk.length && totalSize < 8 * 1024 * 1024) {
170 junk[i++] = o;
  /device/asus/fugu/libaudio/
AudioStreamOut.cpp 642 int64_t junk; local
643 getNextWriteTimestamp_internal(&junk);

Completed in 1390 milliseconds

1 2