HomeSort by relevance Sort by last modified time
    Searched refs:byteToProcess (Results 1 - 5 of 5) sorted by null

  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifOutputStream.java 122 int byteToProcess = length > mByteToSkip ? mByteToSkip : length;
123 length -= byteToProcess;
124 mByteToSkip -= byteToProcess;
125 offset += byteToProcess;
128 int byteToProcess = length > mByteToCopy ? mByteToCopy : length;
129 out.write(buffer, offset, byteToProcess);
130 length -= byteToProcess;
131 mByteToCopy -= byteToProcess;
132 offset += byteToProcess;
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifOutputStream.java 122 int byteToProcess = length > mByteToSkip ? mByteToSkip : length;
123 length -= byteToProcess;
124 mByteToSkip -= byteToProcess;
125 offset += byteToProcess;
128 int byteToProcess = length > mByteToCopy ? mByteToCopy : length;
129 out.write(buffer, offset, byteToProcess);
130 length -= byteToProcess;
131 mByteToCopy -= byteToProcess;
132 offset += byteToProcess;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifOutputStream.java 122 int byteToProcess = length > mByteToSkip ? mByteToSkip : length;
123 length -= byteToProcess;
124 mByteToSkip -= byteToProcess;
125 offset += byteToProcess;
128 int byteToProcess = length > mByteToCopy ? mByteToCopy : length;
129 out.write(buffer, offset, byteToProcess);
130 length -= byteToProcess;
131 mByteToCopy -= byteToProcess;
132 offset += byteToProcess;
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
ExifOutputStream.java 122 int byteToProcess = length > mByteToSkip ? mByteToSkip : length;
123 length -= byteToProcess;
124 mByteToSkip -= byteToProcess;
125 offset += byteToProcess;
128 int byteToProcess = length > mByteToCopy ? mByteToCopy : length;
129 out.write(buffer, offset, byteToProcess);
130 length -= byteToProcess;
131 mByteToCopy -= byteToProcess;
132 offset += byteToProcess;
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
ExifOutputStream.java 123 int byteToProcess = length > mByteToSkip ? mByteToSkip : length;
124 length -= byteToProcess;
125 mByteToSkip -= byteToProcess;
126 offset += byteToProcess;
129 int byteToProcess = length > mByteToCopy ? mByteToCopy : length;
130 out.write(buffer, offset, byteToProcess);
131 length -= byteToProcess;
132 mByteToCopy -= byteToProcess;
133 offset += byteToProcess;

Completed in 54 milliseconds