Searched refs:BUFSIZE (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Camera/src/com/android/camera/
H A DThumbnail.java48 private static final int BUFSIZE = 4096; field in class:Thumbnail
105 b = new BufferedOutputStream(f, BUFSIZE);
129 b = new BufferedInputStream(f, BUFSIZE);
H A DStorage.java50 private static final int BUFSIZE = 4096; field in class:Storage
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DUtils.java221 /* package */ static final int BUFSIZE = 20; field in class:Utils.RingCharBuffer
227 private char[] mCharBuf = new char[BUFSIZE];
228 private int[] mXBuf = new int[BUFSIZE];
229 private int[] mYBuf = new int[BUFSIZE];
246 int ret = in % BUFSIZE;
247 return ret < 0 ? ret + BUFSIZE : ret;
258 if (mLength < BUFSIZE) {

Completed in 52 milliseconds