Home
last modified time | relevance | path

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

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lzw/
DLZWInputStream.java53 private int outputStackLocation; field in LZWInputStream
157 outputStackLocation = maxTableSize; in initializeTables()
218 outputStack[--outputStackLocation] = characters[entry]; in expandCodeToOutputStack()
221 addEntry(previousCode, outputStack[outputStackLocation]); in expandCodeToOutputStack()
224 previousCodeFirstChar = outputStack[outputStackLocation]; in expandCodeToOutputStack()
225 return outputStackLocation; in expandCodeToOutputStack()
229 final int remainingInStack = outputStack.length - outputStackLocation; in readFromStack()
232 System.arraycopy(outputStack, outputStackLocation, b, off, maxLength); in readFromStack()
233 outputStackLocation += maxLength; in readFromStack()