Lines Matching refs:inlen
26 const u8 *in, size_t inlen,
31 if (unlikely(!inlen))
33 if (inlen > fill) {
38 inlen -= fill;
40 if (inlen > BLAKE2B_BLOCK_SIZE) {
41 const size_t nblocks = DIV_ROUND_UP(inlen, BLAKE2B_BLOCK_SIZE);
45 inlen -= BLAKE2B_BLOCK_SIZE * (nblocks - 1);
47 memcpy(state->buf + state->buflen, in, inlen);
48 state->buflen += inlen;
97 const u8 *in, unsigned int inlen,
102 __blake2b_update(state, in, inlen, compress);