Lines Matching refs:len
123 * @param len the number of bytes to use, starting at offset
128 protected abstract void engineUpdate(byte[] b, int off, int len)
154 int len = input.remaining();
155 byte[] b = new byte[JCAUtil.getTempArraySize(len)];
156 while (len > 0) {
157 int chunk = Math.min(len, b.length);
160 len -= chunk;
206 * @param len number of bytes within <code>outbuf</code> allotted for the
219 * process the input data provided, or if <code>len</code> is less
224 protected int engineSign(byte[] outbuf, int offset, int len)
227 if (len < sig.length) {