Searched refs:outputStackLocation (Results 1 – 1 of 1) sorted by relevance
53 private int outputStackLocation; field in LZWInputStream157 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()