Lines Matching defs:inLen
246 int inLen = maxInputSize;
251 (session.id(), buffer, 0, inLen, buffer, 0, outLen);
255 (session.id(), buffer, 0, inLen, buffer, 0, outLen);
264 (session.id(), buffer, 0, inLen, buffer, 0, outLen);
307 private void implUpdate(byte[] in, int inOfs, int inLen) {
313 if ((inLen == 0) || (in == null)) {
316 if (bufOfs + inLen > maxInputSize) {
320 System.arraycopy(in, inOfs, buffer, bufOfs, inLen);
321 bufOfs += inLen;
371 protected byte[] engineUpdate(byte[] in, int inOfs, int inLen) {
372 implUpdate(in, inOfs, inLen);
377 protected int engineUpdate(byte[] in, int inOfs, int inLen,
379 implUpdate(in, inOfs, inLen);
384 protected byte[] engineDoFinal(byte[] in, int inOfs, int inLen)
386 implUpdate(in, inOfs, inLen);
394 protected int engineDoFinal(byte[] in, int inOfs, int inLen,
397 implUpdate(in, inOfs, inLen);