Lines Matching refs:outlen
314 u8 *outbuf, u32 outlen);
725 unsigned int outlen = 0;
730 outlen = (drbg_blocklen(drbg) < (buflen - len)) ?
734 memcpy(buf + len, drbg->V, outlen);
735 len += outlen;
821 unsigned char *outval, size_t outlen,
832 drbg_cpu_to_be32((outlen * 8), &input[1]);
839 while (len < outlen) {
847 blocklen = (drbg_blocklen(drbg) < (outlen - len)) ?
848 drbg_blocklen(drbg) : (outlen - len);
951 unsigned int outlen = 0;
958 outlen = (drbg_blocklen(drbg) < (buflen - len)) ?
961 memcpy(buf + len, dst, outlen);
962 len += outlen;
1813 u8 *outbuf, u32 outlen)
1816 u32 scratchpad_use = min_t(u32, outlen, DRBG_OUTSCRATCHLEN);
1829 while (outlen) {
1830 u32 cryptlen = min3(inlen, outlen, (u32)DRBG_OUTSCRATCHLEN);
1845 outlen -= cryptlen;