HomeSort by relevance Sort by last modified time
    Searched full:bytebuffer (Results 551 - 575 of 994) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stunserver_unittest.cc 59 rtc::ByteBuffer buf;
70 rtc::ByteBuffer buf(packet->buf, packet->size);
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppsocket.h 34 #include "webrtc/base/bytebuffer.h"
82 rtc::ByteBuffer buffer_;
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineKey.java 11 import java.nio.ByteBuffer;
121 byte[] dimensions = ByteBuffer.allocate(8)
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
AbstractManifestWriter.java 11 import java.nio.ByteBuffer;
67 for (ByteBuffer sample : track.getSamples()) {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
MultiplyTimeScaleTrack.java 23 import java.nio.ByteBuffer;
91 public List<ByteBuffer> getSamples() {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ExtensionDescriptor.java 22 import java.nio.ByteBuffer;
58 public void parseDetail(ByteBuffer bb) throws IOException {
InitialObjectDescriptor.java 23 import java.nio.ByteBuffer;
74 public void parseDetail(ByteBuffer bb) throws IOException {
  /external/smack/src/org/xbill/DNS/
UDPClient.java 114 channel.write(ByteBuffer.wrap(data));
130 long ret = channel.read(ByteBuffer.wrap(temp));
  /libcore/luni/src/main/java/libcore/io/
Posix.java 41 import java.nio.ByteBuffer;
114 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException {
132 public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException {
150 public int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException {
170 public int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException {
191 public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException {
244 public int write(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException {
263 private static void maybeUpdateBufferPosition(ByteBuffer buffer, int originalPosition, int bytesReadOrWritten) {
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_SingleByte_ISO_8859_3.java 48 // ByteBuffer inputBB = ByteBuffer.wrap(new byte[] {(byte)166});
  /cts/tests/tests/media/src/android/media/cts/
ExtractDecodeEditEncodeMuxTest.java 36 import java.nio.ByteBuffer;
632 ByteBuffer[] videoDecoderInputBuffers = null;
633 ByteBuffer[] videoDecoderOutputBuffers = null;
634 ByteBuffer[] videoEncoderOutputBuffers = null;
644 ByteBuffer[] audioDecoderInputBuffers = null;
645 ByteBuffer[] audioDecoderOutputBuffers = null;
646 ByteBuffer[] audioEncoderInputBuffers = null;
647 ByteBuffer[] audioEncoderOutputBuffers = null;
733 ByteBuffer decoderInputBuffer = videoDecoderInputBuffers[decoderInputBufferIndex];
776 ByteBuffer decoderInputBuffer = audioDecoderInputBuffers[decoderInputBufferIndex]
    [all...]
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
Gles2ColoredTriangleList.java 19 import java.nio.ByteBuffer;
93 ByteBuffer bb = ByteBuffer.allocateDirect(triangleCoords.length * BYTES_PER_FLOAT);
98 // Create a FloatBuffer that wraps the ByteBuffer.
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
Gles2ColoredTriangleList.java 19 import java.nio.ByteBuffer;
93 ByteBuffer bb = ByteBuffer.allocateDirect(triangleCoords.length * BYTES_PER_FLOAT);
98 // Create a FloatBuffer that wraps the ByteBuffer.
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
Gles2ColoredTriangleList.java 19 import java.nio.ByteBuffer;
93 ByteBuffer bb = ByteBuffer.allocateDirect(triangleCoords.length * BYTES_PER_FLOAT);
98 // Create a FloatBuffer that wraps the ByteBuffer.
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
SampleList.java 7 import java.nio.ByteBuffer;
13 * Creates a list of <code>ByteBuffer</code>s that represent the samples of a given track.
15 public class SampleList extends AbstractList<ByteBuffer> {
167 public ByteBuffer get(int index) {
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Latin1Converter.java 66 public static ByteBuffer convert(ByteBuffer buffer)
77 ByteBuffer out = new ByteBuffer(buffer.length() * 4 / 3);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 27 import java.nio.ByteBuffer;
145 public void setData(ByteBuffer buffer, int offset, int length) {
162 public ByteBuffer getData() {
164 return data == null ? null : ByteBuffer.wrap(data);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
brightness.cpp 17 // Native function to extract brightness from image (handed down as ByteBuffer).
contrast.cpp 17 // Native function to extract contrast ratio from image (handed down as ByteBuffer).
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)

Completed in 867 milliseconds

<<21222324252627282930>>