Lines Matching defs:inputOffset

648      * buffer, starting at <code>inputOffset</code>, are processed, and the
652 * @param inputOffset the offset in <code>input</code> where the input
661 byte[] update(byte[] input, int inputOffset, int inputLen) {
670 int len = update(input, inputOffset, inputLen, output,
689 * buffer, starting at <code>inputOffset</code>, are processed, and the
694 * @param inputOffset the offset in <code>input</code> where the input
706 int update(byte[] input, int inputOffset, int inputLen, byte[] output,
733 && (outputOffset < (inputOffset + inputLen))
734 && (inputOffset < (outputOffset + buffer.length))) {
737 input = Arrays.copyOfRange(input, inputOffset,
738 inputOffset + inputLen);
739 inputOffset = 0;
762 System.arraycopy(input, inputOffset, buffer, buffered, temp);
763 inputOffset += temp;
779 outLen += cipher.decrypt(input, inputOffset, inputConsumed,
782 outLen += cipher.encrypt(input, inputOffset, inputConsumed,
785 inputOffset += inputConsumed;
803 System.arraycopy(input, inputOffset, buffer, buffered,
817 * buffer, starting at <code>inputOffset</code>, and any input bytes that
826 * @param inputOffset the offset in <code>input</code> where the input
840 byte[] doFinal(byte[] input, int inputOffset, int inputLen)
845 int len = doFinal(input, inputOffset, inputLen, output, 0);
864 * buffer, starting at <code>inputOffset</code>, and any input bytes that
874 * @param inputOffset the offset in <code>input</code> where the input
893 int doFinal(byte[] input, int inputOffset, int inputLen, byte[] output,
947 int finalOffset = inputOffset;
951 && (outputOffset < (inputOffset + inputLen))
952 && (inputOffset < (outputOffset + buffer.length)))) {
962 System.arraycopy(input, inputOffset, finalBuf,