HomeSort by relevance Sort by last modified time
    Searched full:bytebuffer (Results 226 - 250 of 744) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
QuicktimeTextTrackImpl.java 31 import java.nio.ByteBuffer;
64 public List<ByteBuffer> getSamples() {
65 List<ByteBuffer> samples = new LinkedList<ByteBuffer>();
70 samples.add(ByteBuffer.wrap(new byte[]{0, 0}));
83 samples.add(ByteBuffer.wrap(baos.toByteArray()));
TextTrackImpl.java 27 import java.nio.ByteBuffer;
67 public List<ByteBuffer> getSamples() {
68 List<ByteBuffer> samples = new LinkedList<ByteBuffer>();
73 samples.add(ByteBuffer.wrap(new byte[]{0, 0}));
86 samples.add(ByteBuffer.wrap(baos.toByteArray()));
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
SimpleFrame.java 28 import java.nio.ByteBuffer;
112 public void setData(ByteBuffer buffer, int offset, int length) {
114 setGenericObjectValue(ByteBuffer.wrap(buffer.array(), offset, length));
118 public ByteBuffer getData() {
119 return (mObject instanceof ByteBuffer) ? (ByteBuffer)mObject : null;
  /libcore/benchmarks/src/benchmarks/regression/
ByteBufferBenchmark.java 47 public static ByteBuffer newBuffer(MyByteOrder byteOrder, boolean aligned, MyBufferType bufferType) throws IOException {
49 ByteBuffer result = null;
52 result = ByteBuffer.allocateDirect(size);
55 result = ByteBuffer.allocate(size);
81 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
91 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
102 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
112 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
133 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
143 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType)
    [all...]
  /libcore/luni/src/main/java/java/nio/
PipeImpl.java 78 public int read(ByteBuffer buffer) throws IOException {
82 public long read(ByteBuffer[] buffers) throws IOException {
86 public long read(ByteBuffer[] buffers, int offset, int length) throws IOException {
113 public int write(ByteBuffer buffer) throws IOException {
117 public long write(ByteBuffer[] buffers) throws IOException {
121 public long write(ByteBuffer[] buffers, int offset, int length) throws IOException {
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
BooleanSerializer.java 37 import java.nio.ByteBuffer;
47 public Boolean readObject(ByteBuffer data, Class c) throws IOException {
51 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
ByteSerializer.java 37 import java.nio.ByteBuffer;
47 public Byte readObject(ByteBuffer data, Class c) throws IOException {
51 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
CharSerializer.java 37 import java.nio.ByteBuffer;
47 public Character readObject(ByteBuffer data, Class c) throws IOException {
51 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
DateSerializer.java 37 import java.nio.ByteBuffer;
48 public Date readObject(ByteBuffer data, Class c) throws IOException {
52 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
DoubleSerializer.java 37 import java.nio.ByteBuffer;
47 public Double readObject(ByteBuffer data, Class c) throws IOException {
51 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
FloatSerializer.java 37 import java.nio.ByteBuffer;
47 public Float readObject(ByteBuffer data, Class c) throws IOException {
51 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
IntSerializer.java 37 import java.nio.ByteBuffer;
47 public Integer readObject(ByteBuffer data, Class c) throws IOException {
51 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
LongSerializer.java 37 import java.nio.ByteBuffer;
47 public Long readObject(ByteBuffer data, Class c) throws IOException {
51 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
SerializableSerializer.java 38 import java.nio.ByteBuffer;
49 public Serializable readObject(ByteBuffer data, Class c) throws IOException {
53 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
ShortSerializer.java 37 import java.nio.ByteBuffer;
46 public Short readObject(ByteBuffer data, Class c) throws IOException {
50 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackRunBox.java 24 import java.nio.ByteBuffer;
187 protected void getContent(ByteBuffer byteBuffer) {
188 writeVersionAndFlags(byteBuffer);
189 IsoTypeWriter.writeUInt32(byteBuffer, entries.size());
193 IsoTypeWriter.writeUInt32(byteBuffer, dataOffset);
196 firstSampleFlags.getContent(byteBuffer);
201 IsoTypeWriter.writeUInt32(byteBuffer, entry.sampleDuration);
204 IsoTypeWriter.writeUInt32(byteBuffer, entry.sampleSize);
207 entry.sampleFlags.getContent(byteBuffer);
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
AbstractFullBox.java 24 import java.nio.ByteBuffer;
64 protected final long parseVersionAndFlags(ByteBuffer content) {
70 protected final void writeVersionAndFlags(ByteBuffer bb) {
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
OutputStreamTarget.java 28 import java.nio.ByteBuffer;
50 ByteBuffer data;
54 data = ByteBuffer.wrap(stringVal.getBytes());
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
Chunk.java 19 import java.nio.ByteBuffer;
53 * Construct from a ByteBuffer. The chunk is assumed to start at
56 public Chunk(int type, ByteBuffer buf) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
BufferSubDataTransform.java 22 import java.nio.ByteBuffer;
49 ByteBuffer bb = ByteBuffer.wrap(mNewData);
  /cts/tests/tests/opengl/src/android/opengl/cts/
RendererOneColorBufferTest.java 20 import java.nio.ByteBuffer;
66 mVertices = ByteBuffer.allocateDirect(mVerticesData.length * 4)
70 ByteBuffer ibb = ByteBuffer.allocateDirect(mIndices.length * 2);
76 mColor = ByteBuffer.allocateDirect(mVertexColor.length*4).
84 mVertices = ByteBuffer.allocateDirect(mVerticesData.length * 4)
88 ByteBuffer ibb = ByteBuffer.allocateDirect(mIndices.length * 2);
94 mColor = ByteBuffer.allocateDirect(mVertexColor.length*4).
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
ISOCharsetEncoderTest.java 18 import java.nio.ByteBuffer;
101 ByteBuffer out = ByteBuffer.allocate(10);
106 out = ByteBuffer.allocate(10);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
HullCollisionShape.java 11 import java.nio.ByteBuffer;
55 // fbuf = ByteBuffer.allocateDirect(points.length * 4).asFloatBuffer();
69 ByteBuffer bbuf=BufferUtils.createByteBuffer(points.length * 4);
84 private native long createShape(ByteBuffer points);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
AbstractBoxParser.java 23 import java.nio.ByteBuffer;
50 ByteBuffer header = ChannelHelper.readFully(byteChannel, 8);
65 ByteBuffer bb = ByteBuffer.allocate(8);
81 ByteBuffer bb = ByteBuffer.allocate(16);
98 header = ByteBuffer.allocate(16);
103 header = ByteBuffer.allocate(24);
108 header = ByteBuffer.allocate(32);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BaseDescriptor.java 22 import java.nio.ByteBuffer;
65 public final void parse(int tag, ByteBuffer bb) throws IOException {
79 ByteBuffer detailSource = bb.slice();
86 public abstract void parseDetail(ByteBuffer bb) throws IOException;

Completed in 373 milliseconds

1 2 3 4 5 6 7 8 91011>>