Home
last modified time | relevance | path

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

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