Lines Matching refs:outlen
316 u8 *outbuf, u32 outlen);
727 unsigned int outlen = 0;
732 outlen = (drbg_blocklen(drbg) < (buflen - len)) ?
736 memcpy(buf + len, drbg->V, outlen);
737 len += outlen;
823 unsigned char *outval, size_t outlen,
834 drbg_cpu_to_be32((outlen * 8), &input[1]);
841 while (len < outlen) {
849 blocklen = (drbg_blocklen(drbg) < (outlen - len)) ?
850 drbg_blocklen(drbg) : (outlen - len);
953 unsigned int outlen = 0;
960 outlen = (drbg_blocklen(drbg) < (buflen - len)) ?
963 memcpy(buf + len, dst, outlen);
964 len += outlen;
1839 u8 *outbuf, u32 outlen)
1842 u32 scratchpad_use = min_t(u32, outlen, DRBG_OUTSCRATCHLEN);
1855 while (outlen) {
1856 u32 cryptlen = min3(inlen, outlen, (u32)DRBG_OUTSCRATCHLEN);
1871 outlen -= cryptlen;