Home
last modified time | relevance | path

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

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/deflate64/
DHuffmanDecoder.java219 int readSoFar = 0; in read() local
220 while (readSoFar < max) { in read()
224 b[off + readSoFar] = memory.add(next); in read()
227 readNow = in.read(b, off + readSoFar, max - readSoFar); in read()
231 memory.add(b, off + readSoFar, readNow); in read()
234 readSoFar += readNow; in read()