HomeSort by relevance Sort by last modified time
    Searched full:bytebuffer (Results 326 - 350 of 935) sorted by null

<<11121314151617181920>>

  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifModifier.java 24 import java.nio.ByteBuffer;
32 private final ByteBuffer mByteBuffer;
48 protected ExifModifier(ByteBuffer byteBuffer, ExifInterface iRef) throws IOException,
50 mByteBuffer = byteBuffer;
51 mOffsetBase = byteBuffer.position();
55 is = new ByteBufferInputStream(byteBuffer);
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
ProxyServer.java 165 int byteBuffer = inputStream.read();
166 if (byteBuffer < 0) return "";
168 if (byteBuffer != '\r') {
169 buffer.append((char)byteBuffer);
171 byteBuffer = inputStream.read();
172 } while ((byteBuffer != '\n') && (byteBuffer >= 0));
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
TriangleRenderer.java 19 import java.nio.ByteBuffer;
121 ByteBuffer vbb = ByteBuffer.allocateDirect(VERTS * 3 * 4);
125 ByteBuffer tbb = ByteBuffer.allocateDirect(VERTS * 2 * 4);
128 ByteBuffer ibb = ByteBuffer.allocateDirect(VERTS * 2);
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifModifier.java 24 import java.nio.ByteBuffer;
32 private final ByteBuffer mByteBuffer;
48 protected ExifModifier(ByteBuffer byteBuffer, ExifInterface iRef) throws IOException,
50 mByteBuffer = byteBuffer;
51 mOffsetBase = byteBuffer.position();
55 is = new ByteBufferInputStream(byteBuffer);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifModifier.java 24 import java.nio.ByteBuffer;
32 private final ByteBuffer mByteBuffer;
48 protected ExifModifier(ByteBuffer byteBuffer, ExifInterface iRef) throws IOException,
50 mByteBuffer = byteBuffer;
51 mOffsetBase = byteBuffer.position();
55 is = new ByteBufferInputStream(byteBuffer);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
ExifModifier.java 23 import java.nio.ByteBuffer;
31 private final ByteBuffer mByteBuffer;
47 protected ExifModifier(ByteBuffer byteBuffer, ExifInterface iRef) throws IOException,
49 mByteBuffer = byteBuffer;
50 mOffsetBase = byteBuffer.position();
54 is = new ByteBufferInputStream(byteBuffer);
  /packages/apps/Mms/src/com/android/mms/exif/
ExifModifier.java 23 import java.nio.ByteBuffer;
31 private final ByteBuffer mByteBuffer;
47 protected ExifModifier(ByteBuffer byteBuffer, ExifInterface iRef) throws IOException,
49 mByteBuffer = byteBuffer;
50 mOffsetBase = byteBuffer.position();
54 is = new ByteBufferInputStream(byteBuffer);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
EditListBox.java 25 import java.nio.ByteBuffer;
85 public void _parseDetails(ByteBuffer content) {
96 protected void getContent(ByteBuffer byteBuffer) {
97 writeVersionAndFlags(byteBuffer);
98 IsoTypeWriter.writeUInt32(byteBuffer, entries.size());
100 entry.getContent(byteBuffer);
131 public Entry(EditListBox editListBox, ByteBuffer bb) {
228 public void getContent(ByteBuffer bb) {
  /frameworks/base/core/java/android/ddm/
DdmHandleHeap.java 26 import java.nio.ByteBuffer;
112 ByteBuffer in = wrapChunk(request);
130 ByteBuffer in = wrapChunk(request);
156 ByteBuffer in = wrapChunk(request);
190 ByteBuffer in = wrapChunk(request);
218 //ByteBuffer in = wrapChunk(request);
231 ByteBuffer in = wrapChunk(request);
248 //ByteBuffer in = wrapChunk(request);
259 //ByteBuffer in = wrapChunk(request);
DdmHandleAppName.java 23 import java.nio.ByteBuffer;
93 ByteBuffer out = ByteBuffer.allocate(
  /frameworks/base/docs/html/training/graphics/opengl/
shapes.jd 49 efficiency, you write these coordinates into a {@link java.nio.ByteBuffer}, that is passed into the
70 ByteBuffer bb = ByteBuffer.allocateDirect(
76 // create a floating point buffer from the ByteBuffer
110 represent this shape, and put the values in a {@link java.nio.ByteBuffer}. In order to avoid
131 ByteBuffer bb = ByteBuffer.allocateDirect(
140 ByteBuffer dlb = ByteBuffer.allocateDirect(
  /external/guava/guava/src/com/google/common/hash/
Murmur3_32HashFunction.java 20 import java.nio.ByteBuffer;
55 @Override protected void process(ByteBuffer bb) {
68 @Override protected void processRemaining(ByteBuffer bb) {
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractNonStreamingHashFunctionTest.java 11 import java.nio.ByteBuffer;
60 protected void process(ByteBuffer bb) {
67 protected void processRemaining(ByteBuffer bb) {
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
PlaceholderAssets.java 13 import java.nio.ByteBuffer;
43 ByteBuffer tempData = BufferUtils.createByteBuffer(3 * 4 * 4);
66 ByteBuffer bb = BufferUtils.createByteBuffer(1);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
ImageFlipper.java 37 import java.nio.ByteBuffer;
61 ByteBuffer data = img.getData(index);
62 ByteBuffer temp = BufferUtils.createByteBuffer(scanline);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
Connector.java 35 import java.nio.ByteBuffer;
76 public ByteBuffer read();
82 public void write( ByteBuffer data );
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
EnumSerializer.java 38 import java.nio.ByteBuffer;
46 public <T> T readObject(ByteBuffer data, Class<T> c) throws IOException {
60 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
DefaultMp4Builder.java 48 import java.nio.ByteBuffer;
75 HashMap<Track, List<ByteBuffer>> track2Sample = new HashMap<Track, List<ByteBuffer>>();
90 List<ByteBuffer> samples = track.getSamples();
135 protected List<ByteBuffer> putSamples(Track track, List<ByteBuffer> samples) {
377 List<ByteBuffer> samples = new ArrayList<ByteBuffer>();
390 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException {
412 ByteBuffer s = DefaultMp4Builder.this.track2Sample.get(track).get(j)
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
MetadataMarshalClass.java 19 import java.nio.ByteBuffer;
34 int marshal(T value, ByteBuffer buffer, int nativeType, boolean sizeOnly);
44 T unmarshal(ByteBuffer buffer, int nativeType);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
AudioTrackDecoder.java 28 import java.nio.ByteBuffer;
70 MediaCodec codec, ByteBuffer[] buffers, int bufferIndex, BufferInfo info) {
71 ByteBuffer buffer = buffers[bufferIndex];
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
AvgBrightnessFilter.java 29 import java.nio.ByteBuffer;
55 ByteBuffer inputBuffer = inputImage.lockBytes(Frame.MODE_READ);
69 private static native float brightnessOperator(int width, int height, ByteBuffer imageBuffer);
ContrastRatioFilter.java 29 import java.nio.ByteBuffer;
55 ByteBuffer inputBuffer = inputImage.lockBytes(Frame.MODE_READ);
73 private static native float contrastOperator(int width, int height, ByteBuffer imageBuffer);
  /libcore/crypto/src/main/java/org/conscrypt/
SSLEngineAppData.java 20 import java.nio.ByteBuffer;
54 * ByteBuffer objects.
56 protected int placeTo(ByteBuffer[] dsts, int offset, int length) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
BinaryXMLDescriber.java 25 import java.nio.ByteBuffer;
58 ByteBuffer buf = ByteBuffer.wrap(bytes);
  /cts/tests/src/android/opengl/cts/
CompressedTextureLoader.java 19 import java.nio.ByteBuffer;
50 public Texture(int width, int height, int internalformat, ByteBuffer data,
75 public ByteBuffer getData() { return mData; }
92 private ByteBuffer mData;
148 ByteBuffer headerBuffer = ByteBuffer.allocateDirect(PVR_HEADER_SIZE)
185 ByteBuffer compressedImage = ByteBuffer.allocateDirect(encodedImageSize).
194 ByteBuffer dataBuffer;
195 dataBuffer = ByteBuffer.allocateDirect(dataSize).order(ByteOrder.nativeOrder())
    [all...]

Completed in 737 milliseconds

<<11121314151617181920>>