Home
last modified time | relevance | path

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

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
DCachedInputStream.java154 int currentBuf = mPos / CHUNK_SIZE; in read() local
155 int indexInBuf = mPos - currentBuf * CHUNK_SIZE; in read()
156 byte[] buf = mBufs.get(currentBuf); in read()
157 int end = (currentBuf + 1) * CHUNK_SIZE; in read()
188 int currentBuf = mPos / CHUNK_SIZE; in copyMarkedBuffer() local
189 int indexInBuf = mPos - currentBuf * CHUNK_SIZE; in copyMarkedBuffer()
190 byte[] buf = mBufs.get(currentBuf); in copyMarkedBuffer()
191 int end = (currentBuf + 1) * CHUNK_SIZE; in copyMarkedBuffer()
233 int currentBuf = mPos / CHUNK_SIZE; in skip() local
234 int indexInBuf = mPos - currentBuf * CHUNK_SIZE; in skip()
[all …]