Symbol: MAXCHUNK
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
110
size_t chunk = MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
136
size_t n, chunk = MAXCHUNK / 8;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
165
while (inl >= MAXCHUNK) {
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
166
DES_cfb_encrypt(in, out, 8, (long)MAXCHUNK, key,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
168
inl -= MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
169
in += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
170
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
75
while (len >= MAXCHUNK) {
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
76
DES_ncbc_encrypt(in, out, MAXCHUNK, key, (DES_cblock *)ctx->iv,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
78
len -= MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
79
in += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
80
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
94
while (len >= MAXCHUNK) {
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
95
DES_ofb64_encrypt(in, out, MAXCHUNK, key, (DES_cblock *)ctx->iv, &num);
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
96
len -= MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
97
in += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
98
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_desx_hw.c
55
while (inl >= MAXCHUNK) {
crypto/openssl/providers/implementations/ciphers/cipher_desx_hw.c
56
DES_xcbc_encrypt(in, out, (long)MAXCHUNK, &tctx->ks1,
crypto/openssl/providers/implementations/ciphers/cipher_desx_hw.c
59
inl -= MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_desx_hw.c
60
in += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_desx_hw.c
61
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
123
while (inl >= MAXCHUNK) {
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
124
DES_ede3_cfb_encrypt(in, out, 8, (long)MAXCHUNK,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
127
inl -= MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
128
in += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
129
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
53
while (inl >= MAXCHUNK) {
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
54
DES_ede3_ofb64_encrypt(in, out, (long)MAXCHUNK, &tctx->ks1, &tctx->ks2,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
56
inl -= MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
57
in += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
58
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
74
while (inl >= MAXCHUNK) {
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
76
DES_ede3_cfb64_encrypt(in, out, (long)MAXCHUNK,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
79
inl -= MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
80
in += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
81
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
67
while (inl >= MAXCHUNK) {
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
68
DES_ede3_cbc_encrypt(in, out, (long)MAXCHUNK, &tctx->ks1, &tctx->ks2,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
70
inl -= MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
71
in += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
72
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
134
while (inl >= MAXCHUNK) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
135
ossl_cipher_hw_generic_cbc(ctx, out, in, MAXCHUNK);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
136
inl -= MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
137
in += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
138
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
148
size_t chunk = MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
166
size_t chunk = MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
184
while (inl >= MAXCHUNK) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
185
ossl_cipher_hw_generic_ofb128(ctx, out, in, MAXCHUNK);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
186
inl -= MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
187
in += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
188
out += MAXCHUNK;
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
253
while (len >= MAXCHUNK) { \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
254
FUNC_PREFIX##_encrypt(in, out, MAXCHUNK, key, ctx->iv, &num); \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
255
len -= MAXCHUNK; \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
256
in += MAXCHUNK; \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
257
out += MAXCHUNK; \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
288
while (len >= MAXCHUNK) { \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
289
FUNC_PREFIX##_encrypt(in, out, MAXCHUNK, key, ctx->iv, ctx->enc); \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
290
len -= MAXCHUNK; \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
291
in += MAXCHUNK; \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
292
out += MAXCHUNK; \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
304
size_t chunk = MAXCHUNK; \