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

1 2 3 4 5

  /external/valgrind/main/none/tests/s390x/
ex_clone.c 17 char buf2[40]; local
20 memset(buf2, 0, sizeof(buf2));
32 ::"a" (buf2), "a" (source)
34 printf("%s\n", buf2);
ex_sig.c 17 char buf2[40]; local
25 ::"a" (buf2), "a" (source)
xc.c 8 char buf2[20] = "*U\0*\0\0UU*\0U*AUAA*UU\n"; local
18 "Q"(*buf2):"memory");
26 char buf2[20] = "*U\0*\0\0UU*\0U*AUAA*UU\n"; local
36 "Q"(*buf2):"memory");
45 char buf2[20] = "*U\0*\0\0UU*\0U*AUAA*UU\n"; local
86 "a"(buf2):"memory");
  /external/stlport/test/unit/
cstring_test.cpp 45 char buf1[1], buf2[1]; local
46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL );
47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL );
  /external/valgrind/main/none/tests/amd64/
asorep.c 5 char buf1[64], buf2[64]; variable
11 uintptr_t b1 = (uintptr_t) buf1, b2 = (uintptr_t) buf2;
23 if (memcmp (buf2, "abcd", 5) != 0
24 || rdi != (uintptr_t) buf2 + 4
34 if (memcmp (buf2, "0 0 0 ", 7) != 0
35 || rdi != (uintptr_t) buf2 + 6
43 if (rsi != (uintptr_t) buf2 + 4
48 memcpy (buf2, "abcdefghijklmnO", 16);
52 if (rdi != (uintptr_t) buf2 + 15
57 memcpy (buf2, "ababababababababcdab", 20)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
cstring_test.cpp 45 char buf1[1], buf2[1]; local
46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL );
47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL );
  /ndk/tests/device/test-stlport/unit/
cstring_test.cpp 45 char buf1[1], buf2[1]; local
46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL );
47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL );
  /external/jmonkeyengine/engine/src/test/jme3test/app/
TestReleaseDirectMemory.java 66 FloatBuffer buf2 = BufferUtils.createFloatBuffer(500000); local
67 BufferUtils.destroyDirectBuffer(buf2);
  /external/openssl/crypto/err/
err_prn.c 71 char buf2[4096]; local
82 BIO_snprintf(buf2, sizeof(buf2), "%lu:%s:%s:%d:%s\n", es, buf,
84 if (cb(buf2, strlen(buf2), u) <= 0)
  /external/valgrind/main/VEX/test/
frstor.c 67 unsigned short* buf2 = malloc(54*sizeof(short)); local
76 /* Reload it into buf2. */
78 do_fsave(buf2);
79 show_fpustate( (unsigned char*)buf2, xx );
fxsave.c 106 unsigned char* buf2 = memalign(16,512); local
112 memset(buf2, 0x55, 512);
123 do_fxsave(buf2);
125 show(buf2, xx);
133 free(buf1); free(buf2); free(buf3);
  /external/valgrind/main/memcheck/tests/amd64/
fxsave-amd64.c 152 unsigned char* buf2 = memalign16(512); local
161 memset(buf2, 0x55, 512);
172 do_fxsave(buf2, 0);
174 show(buf2, xx);
185 memset(buf2, 0x55, 512);
196 do_fxsave(buf2, 1);
198 show(buf2, xx);
207 free(buf1); free(buf2); free(buf3);
  /external/valgrind/main/memcheck/tests/
writev1.c 16 static char buf2[K_1]; variable
31 buf_list[1] = buf2;
  /external/valgrind/main/memcheck/tests/x86/
fxsave.c 107 unsigned char* buf2 = memalign16(512); local
113 memset(buf2, 0x55, 512);
124 do_fxsave(buf2);
126 show(buf2, xx);
134 free(buf1); free(buf2); free(buf3);
  /system/core/toolbox/
cmp.c 14 char buf1[4096], buf2[4096]; local
64 res2 = read(fd2, &buf2, sizeof(buf2));
70 if(buf1[i] != buf2[i]) {
73 printf(" 0x%02x 0x%02x", buf1[i], buf2[i]);
  /external/iproute2/tc/
m_nat.c 173 char buf2[256]; local
195 format_host(AF_INET, 4, &sel->new_addr, buf2, sizeof(buf2)),
  /external/oprofile/libutil++/
child_reader.h 32 * child. in this case child stderr is acumulated in buf2 and can be read
89 // already input in the pipe buffer or in buf2.
102 char * buf2; member in class:child_reader
  /development/tools/line_endings/
line_endings.c 10 static void unix_to_dos(char* buf2, const char* buf);
84 char buf2[(BUFSIZE*2)+3]; local
85 unix_to_dos(buf2, buf);
86 strcpy(node->buf, buf2);
140 unix_to_dos(char* buf2, const char* buf)
143 char* q = buf2;
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 215 char buf2[16]; local
216 sprintf(buf2, "0x%02x,", buf[i]);
217 s += buf2;
  /external/e2fsprogs/e2fsck/
crc32.c 541 unsigned char buf2[SIZE + 4]; local
551 random_garbage(buf2, i);
553 buf3[j] = buf1[j] ^ buf2[j];
556 crc2 = test_step(INIT2, buf2, i);
557 /* Now check that CRC(buf1 ^ buf2) = CRC(buf1) ^ CRC(buf2) */
  /external/e2fsprogs/intl/
localcharset.c 146 char buf2[50+1]; local
169 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
172 l2 = strlen (buf2);
190 strcpy (res_ptr + res_size - (l2 + 1), buf2);
  /external/icu4c/tools/icuinfo/
icuinfo.cpp 139 char buf2[100]; local
145 u_UCharsToChars(buf, buf2, len+1);
146 printf("Default TZ: %s\n", buf2);
  /external/libselinux/src/
label_android_property.c 88 char buf1[BUFSIZ], buf2[BUFSIZ]; local
89 char *buf_p, *prop = buf1, *context = buf2;
  /external/openssl/crypto/dsa/
dsa_gen.c 140 unsigned char buf[SHA256_DIGEST_LENGTH],buf2[SHA256_DIGEST_LENGTH]; local
215 memcpy(buf2, seed, qsize);
227 if (!EVP_Digest(buf, qsize, buf2, NULL, evpmd, NULL))
230 md[i]^=buf2[i];
  /external/openssl/crypto/rc2/
rc2test.c 146 unsigned char buf[8],buf2[8]; local
167 RC2_ecb_encrypt(buf,buf2,&key,RC2_DECRYPT);
168 if (memcmp(&(RC2plain[n][0]),buf2,8) != 0)

Completed in 833 milliseconds

1 2 3 4 5