Searched refs:buf2 (Results 1 - 8 of 8) sorted by relevance

/frameworks/support/volley/tests/src/com/android/volley/toolbox/
H A DByteArrayPoolTest.java26 byte[] buf2 = pool.getBuf(16);
29 pool.returnBuf(buf2);
33 assertTrue(buf3 == buf1 || buf3 == buf2);
34 assertTrue(buf4 == buf1 || buf4 == buf2);
42 byte[] buf2 = pool.getBuf(16);
46 pool.returnBuf(buf2);
53 assertTrue(buf4 == buf2 || buf4 == buf3);
54 assertTrue(buf5 == buf2 || buf5 == buf3);
56 assertTrue(buf6 != buf1 && buf6 != buf2 && buf6 != buf3);
65 byte[] buf2
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DScriptC.java77 byte[] buf2 = new byte[pgm.length * 2];
78 System.arraycopy(pgm, 0, buf2, 0, pgm.length);
79 pgm = buf2;
H A DProgram.java257 byte[] buf2 = new byte[str.length * 2];
258 System.arraycopy(str, 0, buf2, 0, str.length);
259 str = buf2;
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DScriptC.java77 byte[] buf2 = new byte[pgm.length * 2];
78 System.arraycopy(pgm, 0, buf2, 0, pgm.length);
79 pgm = buf2;
/frameworks/base/core/jni/
H A Dandroid_util_Log.cpp87 char buf2[200]; local
88 snprintf(buf2, sizeof(buf2), "Log tag \"%s\" exceeds limit of %d characters\n",
91 jniThrowException(env, "java/lang/IllegalArgumentException", buf2);
/frameworks/compile/slang/
H A Dslang_rs_reflection_cpp.cpp215 char buf2[16]; local
216 sprintf(buf2, "0x%02x,", buf[i]);
217 s += buf2;
/frameworks/av/services/camera/libcameraservice/
H A DCamera2Device.cpp741 camera_metadata_t *buf2 = clone_camera_metadata(buf); local
742 if (!buf2) {
754 *(mStreamSlot.begin()) = buf2;
756 mStreamSlot.push_front(buf2);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DDropBoxTest.java163 byte[] buf2 = new byte[80];
164 assertEquals("DATA2", new String(buf2, 0, e2.getInputStream().read(buf2)));

Completed in 385 milliseconds