Home
last modified time | relevance | path

Searched refs:minblocks (Results 1 – 4 of 4) sorted by relevance

/third_party/openssl/providers/implementations/ciphers/
Dcipher_aes_cbc_hmac_sha1_hw.c138 unsigned int x4 = 4 * n4x, minblocks, processed = 0; in tls1_multi_block_encrypt() local
228 minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64; in tls1_multi_block_encrypt()
229 if (minblocks > MAXCHUNKSIZE / 64) { in tls1_multi_block_encrypt()
249 minblocks -= MAXCHUNKSIZE / 64; in tls1_multi_block_encrypt()
250 } while (minblocks > MAXCHUNKSIZE / 64); in tls1_multi_block_encrypt()
Dcipher_aes_cbc_hmac_sha256_hw.c142 unsigned int x4 = 4 * n4x, minblocks, processed = 0; in tls1_multi_block_encrypt() local
236 minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64; in tls1_multi_block_encrypt()
237 if (minblocks > MAXCHUNKSIZE / 64) { in tls1_multi_block_encrypt()
257 minblocks -= MAXCHUNKSIZE / 64; in tls1_multi_block_encrypt()
258 } while (minblocks > MAXCHUNKSIZE / 64); in tls1_multi_block_encrypt()
/third_party/openssl/crypto/evp/
De_aes_cbc_hmac_sha1.c174 unsigned int frag, last, packlen, i, x4 = 4 * n4x, minblocks, processed = in tls1_1_multi_block_encrypt() local
265 minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64; in tls1_1_multi_block_encrypt()
266 if (minblocks > MAXCHUNKSIZE / 64) { in tls1_1_multi_block_encrypt()
286 minblocks -= MAXCHUNKSIZE / 64; in tls1_1_multi_block_encrypt()
287 } while (minblocks > MAXCHUNKSIZE / 64); in tls1_1_multi_block_encrypt()
De_aes_cbc_hmac_sha256.c169 unsigned int frag, last, packlen, i, x4 = 4 * n4x, minblocks, processed = in tls1_1_multi_block_encrypt() local
264 minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64; in tls1_1_multi_block_encrypt()
265 if (minblocks > MAXCHUNKSIZE / 64) { in tls1_1_multi_block_encrypt()
285 minblocks -= MAXCHUNKSIZE / 64; in tls1_1_multi_block_encrypt()
286 } while (minblocks > MAXCHUNKSIZE / 64); in tls1_1_multi_block_encrypt()