OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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/Mms/src/com/android/mms/exif/
ExifOutputStream.java
124
int
byteToProcess
= length > mByteToSkip ? mByteToSkip : length;
125
length -=
byteToProcess
;
126
mByteToSkip -=
byteToProcess
;
127
offset +=
byteToProcess
;
130
int
byteToProcess
= length > mByteToCopy ? mByteToCopy : length;
131
out.write(buffer, offset,
byteToProcess
);
132
length -=
byteToProcess
;
133
mByteToCopy -=
byteToProcess
;
134
offset +=
byteToProcess
;
Completed in 995 milliseconds