Searched defs:offset (Results 226 - 250 of 644) sorted by last modified time

1234567891011>>

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifModifier.java41 TagOffset(ExifTag tag, int offset) { argument
43 mOffset = offset;
147 private void writeTagValue(ExifTag tag, int offset) { argument
150 Log.v(TAG, "at offset: " + offset);
152 mByteBuffer.position(offset + mOffsetBase);
H A DExifOutputStream.java106 , int offset, int length) {
109 mBuffer.put(buffer, offset, byteToRead);
118 public void write(byte[] buffer, int offset, int length) throws IOException { argument
125 offset += byteToProcess;
129 out.write(buffer, offset, byteToProcess);
132 offset += byteToProcess;
139 int byteRead = requestByteToBuffer(2, buffer, offset, length);
140 offset += byteRead;
157 byteRead = requestByteToBuffer(4, buffer, offset, length);
158 offset
105 requestByteToBuffer(int requestByteCount, byte[] buffer , int offset, int length) argument
309 calculateOffsetOfIfd(IfdData ifd, int offset) argument
[all...]
H A DExifParser.java218 long offset = mTiffStream.readUnsignedInt();
219 if (offset > Integer.MAX_VALUE) {
220 throw new ExifInvalidFormatException("Invalid offset " + offset);
222 mIfd0Position = (int) offset;
225 registerIfd(IfdId.TYPE_IFD_0, offset);
226 if (offset != DEFAULT_IFD0_OFFSET) {
227 mDataAboveIfd0 = new byte[(int) offset - DEFAULT_IFD0_OFFSET];
275 int offset = mTiffStream.getReadByteCount();
277 if (offset < endOfTag
496 skipTo(int offset) argument
518 registerIfd(int ifdType, long offset) argument
524 registerCompressedImage(long offset) argument
528 registerUncompressedStrip(int stripIndex, long offset) argument
800 read(byte[] buffer, int offset, int length) argument
[all...]
H A DExifTag.java102 // Value offset in exif header.
219 * contain an offset value that is determined when the tag is written.
411 public boolean setValue(byte[] value, int offset, int length) { argument
419 System.arraycopy(value, offset, mValue, 0, length);
844 * @param offset the initial position in buffer to store the bytes.
850 protected void getBytes(byte[] buf, int offset, int length) { argument
855 System.arraycopy(mValue, 0, buf, offset,
860 * Gets the offset of this tag. This is only valid if this data size > 4 and
861 * contains an offset to the location of the actual value.
868 * Sets the offset o
870 setOffset(int offset) argument
[all...]
H A DIfdData.java109 * Sets the offset of next IFD.
111 protected void setOffsetToNextIfd(int offset) { argument
112 mOffsetToNextIfd = offset;
116 * Gets the offset of next IFD.
124 * IFDs offset or thumbnail offset will be ignored.
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java62 public abstract void multiplyMatrix(float[] mMatrix, int offset); argument
170 * @param xOffset Specifies a texel offset in the x direction within the
172 * @param yOffset Specifies a texel offset in the y direction within the
H A DGLES20Canvas.java429 public void multiplyMatrix(float[] matrix, int offset) { argument
433 Matrix.multiplyMM(temp, 0, currentMatrix, index, matrix, offset);
491 private void draw(int type, int offset, int count, float x, float y, float width, float height, argument
493 draw(type, offset, count, x, y, width, height, paint.getColor(), paint.getLineWidth());
496 private void draw(int type, int offset, int count, float x, float y, float width, float height, argument
498 prepareDraw(offset, color, lineWidth);
502 private void prepareDraw(int offset, int color, float lineWidth) { argument
518 setPosition(mDrawParameters, offset);
544 private void setPosition(ShaderParameter[] params, int offset) { argument
548 GLES20.GL_FLOAT, false, VERTEX_STRIDE, offset * VERTEX_STRID
972 printMatrix(String message, float[] m, int offset) argument
[all...]
H A DGLES20IdImpl.java19 public void glGenBuffers(int n, int[] buffers, int offset) { argument
20 GLES20.glGenBuffers(n, buffers, offset);
25 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) { argument
26 GLES20.glDeleteTextures(n, textures, offset);
32 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { argument
33 GLES20.glDeleteBuffers(n, buffers, offset);
38 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) { argument
39 GLES20.glDeleteFramebuffers(n, buffers, offset);
H A DGLId.java26 public void glGenBuffers(int n, int[] buffers, int offset); argument
28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset); argument
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset); argument
32 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset); argument
/frameworks/base/rs/java/android/renderscript/
H A DByte2.java380 * @param offset
382 public void copyTo(byte[] data, int offset) { argument
383 data[offset] = x;
384 data[offset + 1] = y;
H A DByte3.java412 * @param offset
414 public void copyTo(byte[] data, int offset) { argument
415 data[offset] = x;
416 data[offset + 1] = y;
417 data[offset + 2] = z;
H A DByte4.java443 * @param offset
445 public void copyTo(byte[] data, int offset) { argument
446 data[offset] = x;
447 data[offset + 1] = y;
448 data[offset + 2] = z;
449 data[offset + 3] = w;
H A DDouble2.java379 * @param offset
381 public void copyTo(double[] data, int offset) { argument
382 data[offset] = x;
383 data[offset + 1] = y;
H A DDouble3.java410 * @param offset
412 public void copyTo(double[] data, int offset) { argument
413 data[offset] = x;
414 data[offset + 1] = y;
415 data[offset + 2] = z;
H A DDouble4.java442 * @param offset
444 public void copyTo(double[] data, int offset) { argument
445 data[offset] = x;
446 data[offset + 1] = y;
447 data[offset + 2] = z;
448 data[offset + 3] = w;
H A DFloat2.java378 * @param offset
380 public void copyTo(float[] data, int offset) { argument
381 data[offset] = x;
382 data[offset + 1] = y;
H A DFloat3.java410 * @param offset
412 public void copyTo(float[] data, int offset) { argument
413 data[offset] = x;
414 data[offset + 1] = y;
415 data[offset + 2] = z;
H A DFloat4.java442 * @param offset
444 public void copyTo(float[] data, int offset) { argument
445 data[offset] = x;
446 data[offset + 1] = y;
447 data[offset + 2] = z;
448 data[offset + 3] = w;
H A DInt2.java434 * @param offset
436 public void copyTo(int[] data, int offset) { argument
437 data[offset] = (int)(x);
438 data[offset + 1] = (int)(y);
H A DInt3.java470 * @param offset
472 public void copyTo(int[] data, int offset) { argument
473 data[offset] = (int)(x);
474 data[offset + 1] = (int)(y);
475 data[offset + 2] = (int)(z);
H A DInt4.java506 * @param offset
508 public void copyTo(int[] data, int offset) { argument
509 data[offset] = (int)(x);
510 data[offset + 1] = (int)(y);
511 data[offset + 2] = (int)(z);
512 data[offset + 3] = (int)(w);
H A DLong2.java434 * @param offset
436 public void copyTo(long[] data, int offset) { argument
437 data[offset] = (long)(x);
438 data[offset + 1] = (long)(y);
H A DLong3.java470 * @param offset
472 public void copyTo(long[] data, int offset) { argument
473 data[offset] = (long)(x);
474 data[offset + 1] = (long)(y);
475 data[offset + 2] = (long)(z);
H A DLong4.java506 * @param offset
508 public void copyTo(long[] data, int offset) { argument
509 data[offset] = (long)(x);
510 data[offset + 1] = (long)(y);
511 data[offset + 2] = (long)(z);
512 data[offset + 3] = (long)(w);
H A DProgramVertexFixedFunction.java243 private void addToBuffer(int offset, Matrix4f m) { argument
244 mIOBuffer.reset(offset);

Completed in 168 milliseconds

1234567891011>>