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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DUtils.java112 /* package */ static final int BUFSIZE = 20; field in class:Utils.RingCharBuffer
117 private char[] mCharBuf = new char[BUFSIZE];
118 private int[] mXBuf = new int[BUFSIZE];
119 private int[] mYBuf = new int[BUFSIZE];
136 int ret = in % BUFSIZE;
137 return ret < 0 ? ret + BUFSIZE : ret;
146 if (mLength < BUFSIZE) {
/packages/apps/Camera/src/com/android/camera/
H A DThumbnail.java48 private static final int BUFSIZE = 4096; field in class:Thumbnail
110 b = new BufferedOutputStream(f, BUFSIZE);
137 b = new BufferedInputStream(f, BUFSIZE);
/packages/apps/LegacyCamera/src/com/android/camera/
H A DThumbnail.java48 private static final int BUFSIZE = 4096; field in class:Thumbnail
110 b = new BufferedOutputStream(f, BUFSIZE);
136 b = new BufferedInputStream(f, BUFSIZE);
H A DStorage.java50 private static final int BUFSIZE = 4096; field in class:Storage

Completed in 1401 milliseconds