Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/javax/crypto/
DCipherInputStream.java41 private int outputIndex; // index of the first byte to return from outputBuffer field in CipherInputStream
90 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()