Home
last modified time | relevance | path

Searched refs:mScratch (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/util/
DProfileData.java52 private byte mScratch[] = new byte[4]; // scratch space for writeInt() field in ProfileData
162 mScratch[0] = (byte) v; in writeInt()
163 mScratch[1] = (byte) (v >> 8); in writeInt()
164 mScratch[2] = (byte) (v >> 16); in writeInt()
165 mScratch[3] = (byte) (v >> 24); in writeInt()
166 mOut.write(mScratch); in writeInt()