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

1 2 3

  /external/syslinux/com32/menu/
drain.c 10 volatile char junk; local
14 rv = read(0, (char *)&junk, 1);
17 junk = 0;
  /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...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m68k/
p2663.s 10 bra junk
11 bra junk
12 bra junk
14 junk: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/
direct2_client.c 38 int junk[3]; local
39 lib1foofastcall (1, &junk[0]);
40 lib1foostdcall (2, &junk[1]);
41 lib1foocdecl (3, &junk[2]);
42 if (junk[1] != 2 || junk[0] != 1 || junk[2] != 3)
  /external/skqp/fuzz/
FuzzScaleToSides.cpp 40 volatile float junk = 0.0f; local
41 junk *= radius1;
42 junk *= radius2;
  /bootable/recovery/tests/unit/
asn1_decoder_test.cpp 36 const uint8_t* junk; local
38 ASSERT_FALSE(ctx.asn1_oid_get(&junk, &length));
39 ASSERT_FALSE(ctx.asn1_octet_string_get(&junk, &length));
  /external/clang/test/CodeGenCXX/
debug-info-nodebug.cpp 39 S2 junk; local
  /external/clang/test/SemaCXX/
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/ltp/testcases/kernel/fs/doio/
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/
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)=%zi: file pointer descrepancy 4 (pos=%li)"
    [all...]
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), stream)) == 0)
    [all...]
  /external/skia/bench/
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);
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/
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);
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]) |
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
ctl.go 118 type junk struct { type
125 func flagOverwrite_ssa(s *junk, c int) int {
139 j := junk{}
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
ctl.go 118 type junk struct { type
125 func flagOverwrite_ssa(s *junk, c int) int {
139 j := junk{}
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/iuc/
SupplementalUtilities.java 52 int junk[] = { local
64 for(int i=0;i<junk.length;i++) {
65 System.out.println(Integer.toString(junk[i]) + " -> " + Double.toString(ldml2d(junk[i])));
  /external/mesa3d/src/compiler/glsl/glcpp/
glcpp-parse.y 348 | HASH_TOKEN IFDEF IDENTIFIER junk NEWLINE {
354 | HASH_TOKEN IFNDEF IDENTIFIER junk NEWLINE {
677 junk: label
    [all...]
  /external/libvpx/libvpx/test/
test_vector_test.cc 61 char junk[128]; local
64 const int res = fscanf(md5_file_, "%s %s", expected_md5, junk);
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/
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/syslinux/com32/chain/
utility.c 58 char junk; local
63 cnt = read(0, &junk, 1);
69 cnt = read(0, &junk, 1);
  /external/ltp/testcases/kernel/syscalls/setregid/
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); \

Completed in 1000 milliseconds

1 2 3