Searched refs:toRead (Results 1 – 1 of 1) sorted by relevance
159 int toRead = count > leftInBuffer ? leftInBuffer : count; in read() local160 int reads = in.read(buf, indexInBuf, toRead); in read()196 int toRead = read > leftInBuffer ? leftInBuffer : read; in copyMarkedBuffer() local197 System.arraycopy(buf, indexInBuf, buffer, offset, toRead); in copyMarkedBuffer()198 offset += toRead; in copyMarkedBuffer()199 read -= toRead; in copyMarkedBuffer()200 totalRead += toRead; in copyMarkedBuffer()201 mPos += toRead; in copyMarkedBuffer()238 int toRead = (int) (byteCount > leftInBuffer ? leftInBuffer : byteCount); in skip() local239 int reads = in.read(buf, indexInBuf, toRead); in skip()