Searched
full:bytebuffer (Results
701 -
725 of
935) sorted by null
<<21222324252627282930>>
/frameworks/base/media/jni/ |
android_media_Utils.cpp | 117 ScopedLocalRef<jclass> clazz(env, env->FindClass("java/nio/ByteBuffer")); 122 clazz.get(), "wrap", "([B)Ljava/nio/ByteBuffer;"); 293 ScopedLocalRef<jclass> byteBufClass(env, env->FindClass("java/nio/ByteBuffer"));
|
/libcore/luni/src/main/java/java/io/ |
InputStreamReader.java | 20 import java.nio.ByteBuffer; 47 private final ByteBuffer bytes = ByteBuffer.allocate(8192);
|
OutputStreamWriter.java | 20 import java.nio.ByteBuffer; 44 private ByteBuffer bytes = ByteBuffer.allocate(8192);
|
/libcore/luni/src/main/java/java/security/ |
MessageDigest.java | 20 import java.nio.ByteBuffer; 366 * the {@code ByteBuffer} 368 public final void update(ByteBuffer input) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
VideoUtils.java | 44 import java.nio.ByteBuffer; 193 ByteBuffer dstBuf = ByteBuffer.allocate(bufferSize);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/ |
TexImageTransform.java | 29 import java.nio.ByteBuffer; 238 ByteBuffer floatBuffer = ByteBuffer.wrap(data);
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
BootSector.java | 24 import java.nio.ByteBuffer; 75 final ByteBuffer bb = ByteBuffer.allocate(512);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
CubeMapActivity.java | 21 import java.nio.ByteBuffer; 249 private ByteBuffer mVertexByteBuffer; 272 mVertexByteBuffer = ByteBuffer.allocateDirect(VERTEX_SIZE * size) 281 mIndexBuffer = ByteBuffer.allocateDirect(CHAR_SIZE * indexCount)
|
GLES20TriangleRenderer.java | 21 import java.nio.ByteBuffer; 44 mTriangleVertices = ByteBuffer.allocateDirect(mTriangleVerticesData.length
|
/external/apache-harmony/security/src/test/api/java.injected/java/security/ |
SecureClassLoaderTest.java | 26 import java.nio.ByteBuffer; 200 * Tests defineClass(String, ByteBuffer, CodeSource) 204 ByteBuffer bbuf = ByteBuffer.wrap(klassData);
|
/external/chromium_org/content/common/gpu/media/ |
android_video_decode_accelerator.cc | 273 // This ignores the emitted ByteBuffer and instead relies on rendering to the 276 // three times: once to the ByteBuffer, once to the SurfaceTexture, and once 279 // 2) Upload the ByteBuffer to the client's texture (two writes). 283 // 2) The ByteBuffer is likely to contain the pixels in a vendor-specific,
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
relayserver_unittest.cc | 95 talk_base::ByteBuffer buf; 100 talk_base::ByteBuffer buf; 131 talk_base::ByteBuffer buf(packet->buf, packet->size); 315 talk_base::ByteBuffer buf(recv_data->bytes(), recv_data->length());
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/ |
BinaryClassField.java | 88 public static final byte BYTEBUFFER = 122;
|
/external/jmonkeyengine/engine/src/test/jme3test/gui/ |
TestSoftwareMouse.java | 106 // ByteBuffer data = img.getData(0);
|
/frameworks/base/graphics/java/android/graphics/ |
LargeBitmap.java | 25 import java.nio.ByteBuffer;
|
/libcore/luni/src/main/java/java/nio/ |
MappedByteBuffer.java | 39 public abstract class MappedByteBuffer extends ByteBuffer {
|
/libcore/luni/src/main/java/javax/crypto/ |
Mac.java | 20 import java.nio.ByteBuffer; 294 * buffer, starting at {@link ByteBuffer#position()}, including the next 295 * {@link ByteBuffer#remaining()} bytes. 302 public final void update(ByteBuffer input) {
|
/libcore/luni/src/test/java/libcore/java/lang/ |
StringTest.java | 21 import java.nio.ByteBuffer; 45 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) { 67 protected CoderResult encodeLoop(CharBuffer in, ByteBuffer out) { 339 assertEquals(expected, decoder.decode(ByteBuffer.wrap(bytes)).toString());
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
Signature2Test.java | 21 import java.nio.ByteBuffer; 407 * java.security.Signature#update(ByteBuffer data) 411 ByteBuffer buffer = ByteBuffer.allocate(10);
|
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
NinePatchTexture.java | 26 import java.nio.ByteBuffer; 197 private ByteBuffer mIndexBuffer; 394 private static ByteBuffer allocateDirectNativeOrderBuffer(int size) { 395 return ByteBuffer.allocateDirect(size).order(ByteOrder.nativeOrder());
|
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
CameraRecordingStream.java | 31 import java.nio.ByteBuffer; 403 ByteBuffer[] encoderOutputBuffers = mEncoder.getOutputBuffers(); 441 ByteBuffer encodedData = encoderOutputBuffers[encoderStatus]; 465 * It's usually necessary to adjust the ByteBuffer values to
|
/development/samples/BasicGLSurfaceView/src/com/example/android/basicglsurfaceview/ |
GLES20TriangleRenderer.java | 21 import java.nio.ByteBuffer; 42 mTriangleVertices = ByteBuffer.allocateDirect(mTriangleVerticesData.length
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
rtpdump.h | 36 #include "talk/base/bytebuffer.h" 59 void WriteToByteBuffer(talk_base::ByteBuffer* buf);
|
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/ |
TextureUtil.java | 10 import java.nio.ByteBuffer; 133 ByteBuffer data;
|
/external/jmonkeyengine/engine/src/test/jme3test/post/ |
TestRenderToMemory.java | 62 import java.nio.ByteBuffer; 85 private final ByteBuffer cpuBuf = BufferUtils.createByteBuffer(width * height * 4);
|
Completed in 896 milliseconds
<<21222324252627282930>>