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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DUserLogRingCharBuffer.java26 public /* for test */ static final int BUFSIZE = 20; field in class:UserLogRingCharBuffer
34 private char[] mCharBuf = new char[BUFSIZE];
35 private int[] mXBuf = new int[BUFSIZE];
36 private int[] mYBuf = new int[BUFSIZE];
58 int ret = in % BUFSIZE;
59 return ret < 0 ? ret + BUFSIZE : ret;
75 if (mLength < 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 652 milliseconds