Searched refs:buf3 (Results 1 - 20 of 20) sorted by relevance

/external/volley/src/test/java/com/android/volley/toolbox/
H A DByteArrayPoolTest.java36 byte[] buf3 = pool.getBuf(16);
38 assertTrue(buf3 == buf1 || buf3 == buf2);
40 assertTrue(buf3 != buf4);
48 byte[] buf3 = pool.getBuf(16);
52 pool.returnBuf(buf3);
58 assertTrue(buf4 == buf2 || buf4 == buf3);
59 assertTrue(buf5 == buf2 || buf5 == buf3);
61 assertTrue(buf6 != buf1 && buf6 != buf2 && buf6 != buf3);
73 byte[] buf3
[all...]
/external/libmicrohttpd/src/microhttpd/
H A Dinternal.c138 char buf3[3]; local
151 buf3[0] = rpos[1];
152 buf3[1] = rpos[2];
153 buf3[2] = '\0';
154 num = strtoul (buf3, &end, 16);
/external/ltp/testcases/kernel/syscalls/times/
H A Dtimes03.c94 struct tms buf1, buf2, buf3; local
161 if (times(&buf3) == -1)
164 if (buf2.tms_utime > buf3.tms_utime) {
165 tst_res(TFAIL, "buf2.tms_utime (%li) > buf3.tms_utime (%li)",
166 buf2.tms_utime, buf3.tms_utime);
168 tst_res(TPASS, "buf2.tms_utime (%li) <= buf3.tms_utime (%li)",
169 buf2.tms_utime, buf3.tms_utime);
172 if (buf2.tms_stime > buf3.tms_stime) {
173 tst_res(TFAIL, "buf2.tms_stime (%li) > buf3.tms_stime (%li)",
174 buf2.tms_stime, buf3
[all...]
/external/valgrind/memcheck/tests/amd64/
H A Dfxsave-amd64.c161 unsigned char* buf3 = memalign16(512); local
170 memset(buf3, 0x55, 512);
184 /* Reload x87/xmm state from buf1 and dump it in buf3. */
186 do_fxsave(buf3, 0);
188 show(buf3, xx);
194 memset(buf3, 0x55, 512);
208 /* Reload x87/xmm state from buf1 and dump it in buf3. */
210 do_fxsave(buf3, 1);
212 show(buf3, xx);
215 free(buf1); free(buf2); free(buf3);
[all...]
/external/valgrind/none/tests/s390x/
H A Dxc.c46 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/memcheck/tests/x86/
H A Dfxsave.c108 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/libavc/decoder/
H A Dih264d_mem_request.h61 void * buf3; /** memory location for buf3 */ member in struct:PicMemBlock
69 UWORD32 u4_size3; /** Size of the buf3 in PicMemBlock */
/external/python/cpython3/Modules/_blake2/impl/
H A Dblake2s-round.h83 LOAD_MSG_ ##r ##_3(buf3); \
84 G1(row1,row2,row3,row4,buf3); \
H A Dblake2s.c249 __m128i buf1, buf2, buf3, buf4; local
/external/eigen/unsupported/test/
H A DFFTW.cpp150 ComplexVector buf3; local
156 fft.inv( buf3 , outbuf);
158 VERIFY( T(dif_rmse(inbuf,buf3)) < test_precision<T>() );// gross check
170 fft.inv( buf3 , outbuf);
171 VERIFY( T(dif_rmse(inbuf,buf3)) < test_precision<T>() );// gross check
/external/ltp/testcases/kernel/syscalls/readv/
H A Dreadv02.c61 char buf1[K_1], buf2[K_1], buf3[K_1]; variable
199 buf_list[2] = buf3;
/external/oj-libjdwp/src/share/npt/
H A Dutf.c459 unsigned short buf3[MAX]; local
472 len3 = utf8ToUtf16(ui, (jbyte*)buf1, len1, (jchar*)buf3, 1024);
476 len1 = utf16ToUtf8m(ui, (jchar*)buf3, len3, (jbyte*)buf1, 1024);
/external/ltp/testcases/kernel/syscalls/writev/
H A Dwritev05.c65 char buf3[K_1]; variable
/external/icu/icu4c/source/test/cintltst/
H A Dutransts.c306 char buf1[BUF_CAP], buf2[BUF_CAP], buf3[BUF_CAP]; local
325 utrans_getID(t3, buf3, BUF_CAP);
327 if(strcmp(buf1, buf3) != 0 ||
332 utrans_getID(t4, buf3, BUF_CAP);
334 if(strcmp(buf2, buf3) != 0 ||
335 strcmp(buf1, buf3) == 0) {
/external/opencv/cv/src/
H A Dcvshapedescr.cpp517 icvMemCopy( double **buf1, double **buf2, double **buf3, int *b_max ) argument
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;
/external/mesa3d/src/mesa/swrast/
H A Ds_context.h331 GLubyte *buf1, *buf2, *buf3, *buf4; member in struct:__anon17289::__anon17290
H A Ds_context.c806 swrast->stencil_temp.buf3 = malloc(SWRAST_MAX_WIDTH * sizeof(GLubyte));
811 !swrast->stencil_temp.buf3 ||
835 free(swrast->stencil_temp.buf3);
H A Ds_stencil.c411 GLubyte *failMask = swrast->stencil_temp.buf3;
/external/freetype/src/autofit/
H A Dafhints.c332 char buf1[16], buf2[16], buf3[16], buf4[16]; local
348 af_print_idx( buf3,
420 char buf1[16], buf2[16], buf3[16]; local
451 af_print_idx( buf3, AF_INDEX_NUM( seg->edge, edges ) ),
/external/webrtc/webrtc/p2p/base/
H A Dstun_unittest.cc1239 rtc::ByteBuffer buf3; local
1240 EXPECT_TRUE(msg2.Write(&buf3));
1242 reinterpret_cast<const char*>(buf3.Data()), buf3.Length(),

Completed in 1053 milliseconds