Searched refs:currentBuf (Results 1 – 1 of 1) sorted by relevance
154 int currentBuf = mPos / CHUNK_SIZE; in read() local155 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() local189 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() local234 int indexInBuf = mPos - currentBuf * CHUNK_SIZE; in skip()[all …]