Lines Matching defs:input_len
248 MD5Update(MD5_CTX *ctx, const void *inpp, unsigned int input_len)
263 if ((ctx->count[0] += (input_len << 3)) < (input_len << 3))
265 ctx->count[1] += (input_len >> 29);
271 if (input_len >= buf_len) {
308 for (; i + 63 < input_len; i += 64)
313 block_count = (input_len - i) >> 6;
331 * if i and input_len are the same, return now instead
336 if (input_len == i)
343 bcopy(&input[i], &ctx->buf_un.buf8[buf_index], input_len - i);
661 size_t input_len)
665 for (i = 0, j = 0; j < input_len; i++, j += sizeof (uint32_t)) {