Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
DSHA1Impl.java168 static void updateHash(int[] intArray, byte[] byteInput, int fromByte, int toByte) { in updateHash() argument
181 intArray[BYTES_OFFSET] = ( index + toByte - fromByte + 1 ) & 077 ; in updateHash()
190 for ( ; ( i <= toByte ) && ( byteIndex < 4 ) ; i++ ) { in updateHash()
202 if ( i > toByte ) { // all input bytes appended in updateHash()
209 maxWord = (toByte - i + 1) >> 2; // # of remaining full words, may be "0" in updateHash()
229 nBytes = toByte - i +1; in updateHash()