HomeSort by relevance Sort by last modified time
    Searched refs:buf3 (Results 1 - 15 of 15) sorted by null

  /frameworks/volley/tests/src/com/android/volley/toolbox/
ByteArrayPoolTest.java 31 byte[] buf3 = pool.getBuf(16);
33 assertTrue(buf3 == buf1 || buf3 == buf2);
35 assertTrue(buf3 != buf4);
43 byte[] buf3 = pool.getBuf(16);
47 pool.returnBuf(buf3);
53 assertTrue(buf4 == buf2 || buf4 == buf3);
54 assertTrue(buf5 == buf2 || buf5 == buf3);
56 assertTrue(buf6 != buf1 && buf6 != buf2 && buf6 != buf3);
68 byte[] buf3 = pool.getBuf(15)
    [all...]
  /external/valgrind/main/memcheck/tests/amd64/
fxsave-amd64.c 153 unsigned char* buf3 = memalign16(512); local
162 memset(buf3, 0x55, 512);
176 /* Reload x87/xmm state from buf1 and dump it in buf3. */
178 do_fxsave(buf3, 0);
180 show(buf3, xx);
186 memset(buf3, 0x55, 512);
200 /* Reload x87/xmm state from buf1 and dump it in buf3. */
202 do_fxsave(buf3, 1);
204 show(buf3, xx);
207 free(buf1); free(buf2); free(buf3);
    [all...]
  /external/valgrind/main/none/tests/s390x/
xc.c 46 char buf3[20] = "0123456789abcdefghij"; local
89 asm volatile ("xc 0(10,%0),0(%0)\n"::"a" (buf3):"memory");
92 dump_field(buf3, 20);
  /external/valgrind/main/VEX/test/
fxsave.c 107 unsigned char* buf3 = memalign(16,512); local
113 memset(buf3, 0x55, 512);
127 /* Reload x87/xmm state from buf1 and dump it in buf3. */
129 do_fxsave(buf3);
131 show(buf3, xx);
133 free(buf1); free(buf2); free(buf3);
  /external/valgrind/main/memcheck/tests/x86/
fxsave.c 108 unsigned char* buf3 = memalign16(512); local
114 memset(buf3, 0x55, 512);
128 /* Reload x87/xmm state from buf1 and dump it in buf3. */
130 do_fxsave(buf3);
132 show(buf3, xx);
134 free(buf1); free(buf2); free(buf3);
  /external/iproute2/tc/
m_nat.c 174 SPRINT_BUF(buf3);
196 action_n2a(sel->action, buf3, sizeof (buf3)));
  /external/eigen/unsupported/test/
FFTW.cpp 153 ComplexVector buf3; local
159 fft.inv( buf3 , outbuf);
161 VERIFY( dif_rmse(inbuf,buf3) < test_precision<T>() );// gross check
173 fft.inv( buf3 , outbuf);
174 VERIFY( dif_rmse(inbuf,buf3) < test_precision<T>() );// gross check
  /external/icu4c/test/cintltst/
utransts.c 298 char buf1[BUF_CAP], buf2[BUF_CAP], buf3[BUF_CAP]; local
317 utrans_getID(t3, buf3, BUF_CAP);
319 if(strcmp(buf1, buf3) != 0 ||
324 utrans_getID(t4, buf3, BUF_CAP);
326 if(strcmp(buf2, buf3) != 0 ||
327 strcmp(buf1, buf3) == 0) {
  /external/e2fsprogs/e2fsck/
crc32.c 542 unsigned char buf3[SIZE + 4]; local
553 buf3[j] = buf1[j] ^ buf2[j];
558 crc3 = test_step(INIT1 ^ INIT2, buf3, i);
  /external/valgrind/main/callgrind/
sim.c 1528 buf3[RESULTS_BUF_LEN]; local
    [all...]
main.c 1702 static Char buf1[128], buf2[128], buf3[128], fmt[128]; local
    [all...]
  /external/valgrind/main/cachegrind/
cg_main.c 1466 static Char buf1[128], buf2[128], buf3[128], buf4[123], fmt[128]; local
    [all...]
  /external/opencv/cv/src/
cvshapedescr.cpp 517 icvMemCopy( double **buf1, double **buf2, double **buf3, int *b_max )
521 if( (*buf1 == NULL && *buf2 == NULL) || *buf3 == NULL )
533 memcpy( *buf2, *buf3, bb * sizeof( double ));
535 *buf3 = *buf2;
547 memcpy( *buf1, *buf3, bb * sizeof( double ));
549 *buf3 = *buf1;
    [all...]
  /external/libselinux/src/
label_file.c 282 char buf1[BUFSIZ], buf2[BUFSIZ], buf3[BUFSIZ]; local
283 char *buf_p, *regex = buf1, *type = buf2, *context = buf3;
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 167 byte[] buf3 = new byte[80];
168 assertEquals("DATA3", new String(buf3, 0, e3.getInputStream().read(buf3)));

Completed in 319 milliseconds