Searched refs:outputIndex (Results 1 – 1 of 1) sorted by relevance
41 private int outputIndex; // index of the first byte to return from outputBuffer field in CipherInputStream90 outputIndex = 0; in fillBuffer()130 if (outputIndex == outputLength && !fillBuffer()) { in read()133 return outputBuffer[outputIndex++] & 0xFF; in read()155 if (outputIndex == outputLength && !fillBuffer()) { in read()158 int available = outputLength - outputIndex; in read()163 System.arraycopy(outputBuffer, outputIndex, buf, off, len); in read()165 outputIndex += len; in read()176 return outputLength - outputIndex; in available()