Lines Matching refs:offset
84 * starting at the specified offset.
88 * @param offset the offset to start from in the array of bytes.
91 * <code>offset</code>.
93 protected abstract void engineUpdate(byte[] input, int offset, int len);
157 * @param offset offset to start from in the output buffer
173 protected int engineDigest(byte[] buf, int offset, int len)
179 if (buf.length - offset < digest.length)
182 System.arraycopy(digest, 0, buf, offset, digest.length);