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

/frameworks/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.java84 byte[] buf2 = new byte[pgm.length * 2];
85 System.arraycopy(pgm, 0, buf2, 0, pgm.length);
86 pgm = buf2;
H A DProgram.java258 byte[] buf2 = new byte[str.length * 2];
259 System.arraycopy(str, 0, buf2, 0, str.length);
260 str = buf2;
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptC.java86 byte[] buf2 = new byte[pgm.length * 2];
87 System.arraycopy(pgm, 0, buf2, 0, pgm.length);
88 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.cpp299 char buf2[16]; local
300 snprintf(buf2, sizeof(buf2), "0x%02x,", buf[i]);
301 s += buf2;
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicColorMatrix.cpp420 uint8_t *buf2 = NULL;
452 buf2 = buf;
550 buf2 = buf;
652 buf = addBranch(buf, buf2, 0x01);
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.cpp749 camera_metadata_t *buf2 = clone_camera_metadata(buf); local
750 if (!buf2) {
762 *(mStreamSlot.begin()) = buf2;
764 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 4852 milliseconds