Searched
full:bytebuffer (Results
551 -
575 of
964) sorted by null
<<21222324252627282930>>
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
exposure.cpp | 17 // Native function to extract exposure from image (handed down as ByteBuffer).
|
/frameworks/native/opengl/tests/testViewport/src/com/android/test/ |
TestView.java | 34 import java.nio.ByteBuffer; 101 private ByteBuffer mVertexByteBuffer; 124 mVertexByteBuffer = ByteBuffer.allocateDirect(VERTEX_SIZE * size) 133 mIndexBuffer = ByteBuffer.allocateDirect(CHAR_SIZE * indexCount)
|
/libcore/luni/src/main/java/java/util/jar/ |
Manifest.java | 23 import java.nio.ByteBuffer; 254 ByteBuffer buffer = ByteBuffer.allocate(LINE_LENGTH_LIMIT); 288 String value, CharsetEncoder encoder, ByteBuffer bBuf) throws IOException {
|
/art/test/098-ddmc/src/ |
Main.java | 18 import java.nio.ByteBuffer; 95 ByteBuffer b = ByteBuffer.wrap(allocations);
|
/cts/tests/tests/openglperf/src/android/openglperf/cts/ |
Sphere.java | 20 import java.nio.ByteBuffer; 65 mVertices = ByteBuffer.allocateDirect(nVertices * 5 * FLOAT_SIZE) 78 mIndices[i] = ByteBuffer.allocateDirect(mNumIndices[i] * SHORT_SIZE)
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
CompressedTextureActivity.java | 24 import java.nio.ByteBuffer; 136 ByteBuffer image = ByteBuffer.allocateDirect(height * stride)
|
/development/samples/USB/MissileLauncher/src/com/android/missilelauncher/ |
MissileLauncherActivity.java | 19 import java.nio.ByteBuffer; 217 ByteBuffer buffer = ByteBuffer.allocate(1);
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
sctputils_unittest.cc | 28 #include "talk/base/bytebuffer.h" 44 talk_base::ByteBuffer buffer(packet.data(), packet.length()); 156 talk_base::ByteBuffer buffer(packet.data(), packet.length());
|
/external/guava/guava/src/com/google/common/hash/ |
MessageDigestHashFunction.java | 25 import java.nio.ByteBuffer; 64 private final ByteBuffer scratch; // lazy convenience 69 this.scratch = ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN);
|
/external/guava/guava-tests/test/com/google/common/hash/ |
HashTestUtils.java | 9 import java.nio.ByteBuffer; 35 ByteBuffer bb = ByteBuffer.wrap(new byte[longs.length * 8]).order(bo);
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
IsoFile.java | 25 import java.nio.ByteBuffer; 72 public void _parseDetails(ByteBuffer content) { 76 public void parse(ReadableByteChannel inFC, ByteBuffer header, long contentSize, AbstractBoxParser abstractBoxParser) throws IOException {
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/ |
SampleFlags.java | 23 import java.nio.ByteBuffer; 48 public SampleFlags(ByteBuffer bb) { 60 public void getContent(ByteBuffer os) {
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/ |
Mp4TrackImpl.java | 22 import java.nio.ByteBuffer; 33 private List<ByteBuffer> samples; 173 public List<ByteBuffer> getSamples() {
|
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/ |
MarshalQueryableEnum.java | 23 import java.nio.ByteBuffer; 59 public void marshal(T value, ByteBuffer buffer) { 76 public T unmarshal(ByteBuffer buffer) {
|
/frameworks/base/media/jni/ |
android_media_MediaMuxer.cpp | 83 // Try to convert the incoming byteBuffer into ABuffer 235 { "nativeWriteSampleData", "(JILjava/nio/ByteBuffer;IIJI)V", 254 jclass byteBufClass = env->FindClass("java/nio/ByteBuffer");
|
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/ |
RgbPlayerActivity.java | 25 import java.nio.ByteBuffer; 79 private ByteBuffer mFlipBuf; 131 mFlipBuf = ByteBuffer.allocate(mBytesPerImage);
|
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/ |
UsbHid.java | 19 import java.nio.ByteBuffer; 45 public void generateDescriptor(ByteBuffer buffer) { 100 public void generateReport(ByteBuffer buffer, Contact[] contacts, int contactCount) {
|
/frameworks/base/tests/Camera2Tests/CameraToo/tests/src/com/example/android/camera2/cameratoo/ |
CameraTooTest.java | 33 import java.nio.ByteBuffer; 150 ByteBuffer buf = ByteBuffer.allocate(25);
|
/frameworks/multidex/library/test/src/android/support/multidex/ |
ZipUtilTest.java | 32 import java.nio.ByteBuffer; 83 ByteBuffer buffer = ByteBuffer.wrap(dirData);
|
/frameworks/native/opengl/tests/lighting1709/src/com/android/lightingtest/ |
ClearActivity.java | 19 import java.nio.ByteBuffer; 109 ByteBuffer vbb = ByteBuffer.allocateDirect(v.length*4);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
PropertyResourceBundleTest.java | 26 import java.nio.ByteBuffer; 75 CharBuffer cbuffer = charset.decode(ByteBuffer.wrap(content 86 cbuffer = charset.decode(ByteBuffer.wrap(content.getBytes("UTF-8")));
|
/libcore/luni/src/main/java/java/nio/channels/ |
SocketChannel.java | 23 import java.nio.ByteBuffer; 262 * @see java.nio.channels.ReadableByteChannel#read(java.nio.ByteBuffer) 264 public abstract int read(ByteBuffer target) throws IOException; 298 * @see java.nio.channels.ScatteringByteChannel#read(java.nio.ByteBuffer[], 301 public abstract long read(ByteBuffer[] targets, int offset, int length) throws IOException; 332 public synchronized final long read(ByteBuffer[] targets) throws IOException { 363 * @see java.nio.channels.WritableByteChannel#write(java.nio.ByteBuffer) 365 public abstract int write(ByteBuffer source) throws IOException; 401 * @see java.nio.channels.GatheringByteChannel#write(java.nio.ByteBuffer[], 404 public abstract long write(ByteBuffer[] sources, int offset, int length) throws IOException [all...] |
/libcore/luni/src/main/java/java/security/ |
MessageDigestSpi.java | 20 import java.nio.ByteBuffer; 70 * the {@code ByteBuffer}. 72 protected void engineUpdate(ByteBuffer input) {
|
SecureClassLoader.java | 20 import java.nio.ByteBuffer; 115 protected final Class<?> defineClass(String name, ByteBuffer b, CodeSource cs) { 116 //FIXME 1.5 - remove b.array(), call super.defineClass(,ByteBuffer,)
|
/libcore/luni/src/test/java/libcore/java/io/ |
InterruptedStreamTest.java | 29 import java.nio.ByteBuffer; 145 channel.read(ByteBuffer.allocate(BUFFER_SIZE)); 184 channel.write(ByteBuffer.allocate(BUFFER_SIZE));
|
Completed in 505 milliseconds
<<21222324252627282930>>