Symbol: outl
crypto/libecc/include/libecc/words/words.h
117
(outl) = tmpl; \
crypto/libecc/include/libecc/words/words.h
118
(outl) = (word_t)((outl) + ((tmpm & HWORD_MASK) << HWORD_BITS));\
crypto/libecc/include/libecc/words/words.h
120
carryl = (word_t)((outl) < tmpl); \
crypto/libecc/include/libecc/words/words.h
98
#define WORD_MUL(outh, outl, in1, in2) do { \
crypto/openssl/apps/s_server.c
260
static int ebcdic_read(BIO *b, char *out, int outl);
crypto/openssl/apps/s_server.c
320
static int ebcdic_read(BIO *b, char *out, int outl)
crypto/openssl/apps/s_server.c
325
if (out == NULL || outl == 0)
crypto/openssl/apps/s_server.c
330
ret = BIO_read(next, out, outl);
crypto/openssl/apps/speed.c
1005
int outl, count, realcount = 0;
crypto/openssl/apps/speed.c
1035
if (!EVP_EncryptUpdate(ctx, NULL, &outl,
crypto/openssl/apps/speed.c
1043
if (!EVP_EncryptUpdate(ctx, NULL, &outl, aad, sizeof(aad))) {
crypto/openssl/apps/speed.c
1049
if (!EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum])) {
crypto/openssl/apps/speed.c
1054
if (EVP_EncryptFinal_ex(ctx, buf, &outl))
crypto/openssl/apps/speed.c
1077
int outl, count, realcount = 0;
crypto/openssl/apps/speed.c
1124
if (!EVP_DecryptUpdate(ctx, NULL, &outl,
crypto/openssl/apps/speed.c
1132
if (!EVP_DecryptUpdate(ctx, NULL, &outl, aad, sizeof(aad))) {
crypto/openssl/apps/speed.c
1138
if (!EVP_DecryptUpdate(ctx, outbuf, &outl, buf, lengths[testnum])) {
crypto/openssl/apps/speed.c
1143
if (EVP_DecryptFinal_ex(ctx, outbuf, &outl))
crypto/openssl/apps/speed.c
819
size_t outl;
crypto/openssl/apps/speed.c
823
|| !EVP_MAC_final(mctx, mac, &outl, sizeof(mac)))
crypto/openssl/apps/speed.c
962
int outl, count, rc;
crypto/openssl/apps/speed.c
966
rc = EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
crypto/openssl/apps/speed.c
974
rc = EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
crypto/openssl/apps/speed.c
982
rc = EVP_DecryptFinal_ex(ctx, buf, &outl);
crypto/openssl/apps/speed.c
984
rc = EVP_EncryptFinal_ex(ctx, buf, &outl);
crypto/openssl/crypto/asn1/a_sign.c
108
return outl;
crypto/openssl/crypto/asn1/a_sign.c
153
size_t inl = 0, outl = 0, outll = 0;
crypto/openssl/crypto/asn1/a_sign.c
211
outl = signature->length;
crypto/openssl/crypto/asn1/a_sign.c
255
outl = 0;
crypto/openssl/crypto/asn1/a_sign.c
261
outl = 0;
crypto/openssl/crypto/asn1/a_sign.c
265
outl = outll;
crypto/openssl/crypto/asn1/a_sign.c
268
outl = 0;
crypto/openssl/crypto/asn1/a_sign.c
272
if (!EVP_DigestSign(ctx, buf_out, &outl, buf_in, inl)) {
crypto/openssl/crypto/asn1/a_sign.c
273
outl = 0;
crypto/openssl/crypto/asn1/a_sign.c
277
ASN1_STRING_set0(signature, buf_out, outl);
crypto/openssl/crypto/asn1/a_sign.c
287
return outl;
crypto/openssl/crypto/asn1/a_sign.c
33
int i, inl = 0, outl = 0;
crypto/openssl/crypto/asn1/a_sign.c
80
outll = outl = EVP_PKEY_get_size(pkey);
crypto/openssl/crypto/asn1/a_sign.c
83
outl = 0;
crypto/openssl/crypto/asn1/a_sign.c
92
(unsigned int *)&outl, pkey)) {
crypto/openssl/crypto/asn1/a_sign.c
93
outl = 0;
crypto/openssl/crypto/asn1/a_sign.c
97
ASN1_STRING_set0(signature, buf_out, outl);
crypto/openssl/crypto/bio/bf_buff.c
105
if (i > outl)
crypto/openssl/crypto/bio/bf_buff.c
106
i = outl;
crypto/openssl/crypto/bio/bf_buff.c
111
if (outl == i)
crypto/openssl/crypto/bio/bf_buff.c
113
outl -= i;
crypto/openssl/crypto/bio/bf_buff.c
123
if (outl > ctx->ibuf_size) {
crypto/openssl/crypto/bio/bf_buff.c
125
i = BIO_read(b->next_bio, out, outl);
crypto/openssl/crypto/bio/bf_buff.c
134
if (outl == i)
crypto/openssl/crypto/bio/bf_buff.c
137
outl -= i;
crypto/openssl/crypto/bio/bf_buff.c
87
static int buffer_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bf_lbuf.c
91
static int linebuffer_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bf_lbuf.c
99
ret = BIO_read(b->next_bio, out, outl);
crypto/openssl/crypto/bio/bf_nbio.c
101
ret = BIO_read(b->next_bio, out, outl);
crypto/openssl/crypto/bio/bf_nbio.c
78
static int nbiof_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bf_nbio.c
94
if (outl > num)
crypto/openssl/crypto/bio/bf_nbio.c
95
outl = num;
crypto/openssl/crypto/bio/bf_null.c
45
static int nullf_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bf_null.c
53
ret = BIO_read(b->next_bio, out, outl);
crypto/openssl/crypto/bio/bf_prefix.c
100
ctx->linestart = (out[outl - 1] == '\n');
crypto/openssl/crypto/bio/bf_prefix.c
101
return BIO_write_ex(BIO_next(b), out, outl, numwritten);
crypto/openssl/crypto/bio/bf_prefix.c
106
while (outl > 0) {
crypto/openssl/crypto/bio/bf_prefix.c
126
for (i = 0, c = '\0'; i < outl && (c = out[i]) != '\n'; i++)
crypto/openssl/crypto/bio/bf_prefix.c
138
outl -= num;
crypto/openssl/crypto/bio/bf_prefix.c
15
static int prefix_write(BIO *b, const char *out, size_t outl,
crypto/openssl/crypto/bio/bf_prefix.c
81
static int prefix_write(BIO *b, const char *out, size_t outl,
crypto/openssl/crypto/bio/bf_prefix.c
99
if (outl > 0)
crypto/openssl/crypto/bio/bf_readbuff.c
106
static int readbuffer_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bf_readbuff.c
111
if (out == NULL || outl == 0)
crypto/openssl/crypto/bio/bf_readbuff.c
123
if (i > outl)
crypto/openssl/crypto/bio/bf_readbuff.c
124
i = outl;
crypto/openssl/crypto/bio/bf_readbuff.c
130
if (outl == i)
crypto/openssl/crypto/bio/bf_readbuff.c
132
outl -= i;
crypto/openssl/crypto/bio/bf_readbuff.c
137
if (!readbuffer_resize(ctx, outl))
crypto/openssl/crypto/bio/bf_readbuff.c
141
i = BIO_read(b->next_bio, ctx->ibuf + ctx->ibuf_off, outl);
crypto/openssl/crypto/bio/bss_acpt.c
365
static int acpt_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_acpt.c
379
ret = BIO_read(b->next_bio, out, outl);
crypto/openssl/crypto/bio/bss_conn.c
357
static int conn_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_conn.c
371
ret = BIO_read(data->dgram_bio, out, outl);
crypto/openssl/crypto/bio/bss_conn.c
380
ret = ktls_read_record(b->num, out, outl);
crypto/openssl/crypto/bio/bss_conn.c
383
ret = readsocket(b->num, out, outl);
crypto/openssl/crypto/bio/bss_dgram.c
1970
static int dgram_sctp_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_dgram.c
1986
iov.iov_len = outl;
crypto/openssl/crypto/bio/bss_dgram.c
2093
memset(out, 0, outl);
crypto/openssl/crypto/bio/bss_dgram.c
2098
&& (ret < outl));
crypto/openssl/crypto/bio/bss_dgram.c
2107
if (ret == outl)
crypto/openssl/crypto/bio/bss_dgram.c
2139
memset(out, 0, outl);
crypto/openssl/crypto/bio/bss_dgram.c
421
static int dgram_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_dgram.c
436
ret = recvfrom(b->num, out, outl, flags,
crypto/openssl/crypto/bio/bss_fd.c
113
static int fd_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_fd.c
119
ret = UP_read(b->num, out, outl);
crypto/openssl/crypto/bio/bss_file.c
136
static int file_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_file.c
142
ret = UP_fread(out, 1, (int)outl, b->ptr);
crypto/openssl/crypto/bio/bss_file.c
144
ret = fread(out, 1, (int)outl, (FILE *)b->ptr);
crypto/openssl/crypto/bio/bss_file.c
383
static int file_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_mem.c
191
static int mem_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_mem.c
200
ret = (outl >= 0 && (size_t)outl > bm->length) ? (int)bm->length : outl;
crypto/openssl/crypto/bio/bss_null.c
40
static int null_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_sock.c
105
static int sock_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_sock.c
113
ret = ktls_read_record(b->num, out, outl);
crypto/openssl/crypto/bio/bss_sock.c
116
ret = readsocket(b->num, out, outl);
crypto/openssl/crypto/cms/cms_pwri.c
205
int outl, rv = 0;
crypto/openssl/crypto/cms/cms_pwri.c
221
if (!EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl,
crypto/openssl/crypto/cms/cms_pwri.c
228
|| !EVP_DecryptUpdate(ctx, tmp, &outl,
crypto/openssl/crypto/cms/cms_pwri.c
231
|| !EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen)
crypto/openssl/crypto/cms/cms_pwri.c
236
|| !EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen))
crypto/openssl/crypto/comp/c_brotli.c
408
static int bio_brotli_read(BIO *b, char *out, int outl);
crypto/openssl/crypto/comp/c_brotli.c
500
static int bio_brotli_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/comp/c_brotli.c
507
if (out == NULL || outl <= 0) {
crypto/openssl/crypto/comp/c_brotli.c
512
if ((unsigned int)outl > SIZE_MAX) {
crypto/openssl/crypto/comp/c_brotli.c
532
ctx->decode.avail_out = (size_t)outl;
crypto/openssl/crypto/comp/c_brotli.c
545
return (int)(outl - ctx->decode.avail_out);
crypto/openssl/crypto/comp/c_brotli.c
559
int tot = outl - ctx->decode.avail_out;
crypto/openssl/crypto/comp/c_zlib.c
363
static int bio_zlib_read(BIO *b, char *out, int outl);
crypto/openssl/crypto/comp/c_zlib.c
444
static int bio_zlib_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/comp/c_zlib.c
451
if (!out || !outl)
crypto/openssl/crypto/comp/c_zlib.c
471
zin->avail_out = (unsigned int)outl;
crypto/openssl/crypto/comp/c_zlib.c
483
return outl - zin->avail_out;
crypto/openssl/crypto/comp/c_zlib.c
493
int tot = outl - zin->avail_out;
crypto/openssl/crypto/comp/c_zstd.c
473
static int bio_zstd_read(BIO *b, char *out, int outl);
crypto/openssl/crypto/comp/c_zstd.c
576
static int bio_zstd_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/comp/c_zstd.c
588
if (outl <= 0)
crypto/openssl/crypto/comp/c_zstd.c
606
outBuf.size = (size_t)outl;
crypto/openssl/crypto/evp/bio_b64.c
114
static int b64_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/evp/bio_b64.c
143
if (i > outl)
crypto/openssl/crypto/evp/bio_b64.c
144
i = outl;
crypto/openssl/crypto/evp/bio_b64.c
149
outl -= i;
crypto/openssl/crypto/evp/bio_b64.c
164
while (outl > 0) {
crypto/openssl/crypto/evp/bio_b64.c
297
if (ctx->buf_len <= outl)
crypto/openssl/crypto/evp/bio_b64.c
300
i = outl;
crypto/openssl/crypto/evp/bio_b64.c
309
outl -= i;
crypto/openssl/crypto/evp/bio_enc.c
104
static int enc_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/evp/bio_enc.c
121
if (i > outl)
crypto/openssl/crypto/evp/bio_enc.c
122
i = outl;
crypto/openssl/crypto/evp/bio_enc.c
126
outl -= i;
crypto/openssl/crypto/evp/bio_enc.c
147
while (outl > 0) {
crypto/openssl/crypto/evp/bio_enc.c
174
if (outl > ENC_MIN_CHUNK) {
crypto/openssl/crypto/evp/bio_enc.c
180
int j = outl - blocksize, buf_len;
crypto/openssl/crypto/evp/bio_enc.c
190
outl -= buf_len;
crypto/openssl/crypto/evp/bio_enc.c
219
if (ctx->buf_len <= outl)
crypto/openssl/crypto/evp/bio_enc.c
222
i = outl;
crypto/openssl/crypto/evp/bio_enc.c
228
outl -= i;
crypto/openssl/crypto/evp/bio_md.c
73
static int md_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/evp/bio_md.c
88
ret = BIO_read(next, out, outl);
crypto/openssl/crypto/evp/bio_ok.c
169
static int ok_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/evp/bio_ok.c
184
while (outl > 0) {
crypto/openssl/crypto/evp/bio_ok.c
189
if (i > outl)
crypto/openssl/crypto/evp/bio_ok.c
190
i = outl;
crypto/openssl/crypto/evp/bio_ok.c
194
outl -= i;
crypto/openssl/crypto/evp/bio_ok.c
216
if (outl == 0)
crypto/openssl/crypto/evp/encode.c
383
int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/encode.c
389
*outl = 0;
crypto/openssl/crypto/evp/encode.c
427
*outl = 0;
crypto/openssl/crypto/evp/encode.c
433
*outl = total;
crypto/openssl/crypto/evp/encode.c
438
void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/encode.c
449
*outl = ret;
crypto/openssl/crypto/evp/encode.c
523
int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/encode.c
628
*outl = ret;
crypto/openssl/crypto/evp/encode.c
718
int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/encode.c
722
*outl = 0;
crypto/openssl/crypto/evp/encode.c
728
*outl = i;
crypto/openssl/crypto/evp/evp_enc.c
1024
*outl = soutl;
crypto/openssl/crypto/evp/evp_enc.c
1032
return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl);
crypto/openssl/crypto/evp/evp_enc.c
1035
int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
1038
ret = EVP_EncryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
1042
int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
1049
if (outl != NULL) {
crypto/openssl/crypto/evp/evp_enc.c
1050
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
1084
*outl = soutl;
crypto/openssl/crypto/evp/evp_enc.c
1097
*outl = ret;
crypto/openssl/crypto/evp/evp_enc.c
1104
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
1113
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
1123
*outl = b;
crypto/openssl/crypto/evp/evp_enc.c
1128
int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/evp_enc.c
1141
if (ossl_likely(outl != NULL)) {
crypto/openssl/crypto/evp/evp_enc.c
1142
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
1176
*outl = soutl;
crypto/openssl/crypto/evp/evp_enc.c
1197
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
1200
*outl = fix_len;
crypto/openssl/crypto/evp/evp_enc.c
1205
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
1210
return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl);
crypto/openssl/crypto/evp/evp_enc.c
1240
if (!evp_EncryptDecryptUpdate(ctx, out, outl, in, inl))
crypto/openssl/crypto/evp/evp_enc.c
1248
*outl -= b;
crypto/openssl/crypto/evp/evp_enc.c
1250
memcpy(ctx->final, &out[*outl], b);
crypto/openssl/crypto/evp/evp_enc.c
1255
*outl += b;
crypto/openssl/crypto/evp/evp_enc.c
1260
int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
1263
ret = EVP_DecryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
1267
int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
1275
if (outl != NULL) {
crypto/openssl/crypto/evp/evp_enc.c
1276
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
1311
*outl = soutl;
crypto/openssl/crypto/evp/evp_enc.c
1319
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
1325
*outl = i;
crypto/openssl/crypto/evp/evp_enc.c
1335
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
1363
*outl = n;
crypto/openssl/crypto/evp/evp_enc.c
716
int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/evp_enc.c
720
return EVP_EncryptUpdate(ctx, out, outl, in, inl);
crypto/openssl/crypto/evp/evp_enc.c
722
return EVP_DecryptUpdate(ctx, out, outl, in, inl);
crypto/openssl/crypto/evp/evp_enc.c
726
unsigned char **out, size_t *outl,
crypto/openssl/crypto/evp/evp_enc.c
732
if (ossl_unlikely(outl == NULL || inl == NULL)) {
crypto/openssl/crypto/evp/evp_enc.c
753
outl[i] = 0;
crypto/openssl/crypto/evp/evp_enc.c
756
out, outl, outsize,
crypto/openssl/crypto/evp/evp_enc.c
760
int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
763
return EVP_EncryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
765
return EVP_DecryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
768
int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
771
return EVP_EncryptFinal(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
773
return EVP_DecryptFinal(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
777
unsigned char **out, size_t *outl,
crypto/openssl/crypto/evp/evp_enc.c
782
if (ossl_unlikely(outl == NULL)) {
crypto/openssl/crypto/evp/evp_enc.c
803
outl[i] = 0;
crypto/openssl/crypto/evp/evp_enc.c
806
out, outl, outsize);
crypto/openssl/crypto/evp/evp_enc.c
886
unsigned char *out, int *outl,
crypto/openssl/crypto/evp/evp_enc.c
907
*outl = i;
crypto/openssl/crypto/evp/evp_enc.c
912
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
922
*outl = inl;
crypto/openssl/crypto/evp/evp_enc.c
925
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
935
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
957
*outl = bl;
crypto/openssl/crypto/evp/evp_enc.c
960
*outl = 0;
crypto/openssl/crypto/evp/evp_enc.c
966
*outl += inl;
crypto/openssl/crypto/evp/evp_enc.c
975
int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/evp_enc.c
987
if (ossl_likely(outl != NULL)) {
crypto/openssl/crypto/evp/evp_enc.c
988
*outl = 0;
crypto/openssl/crypto/evp/evp_lib.c
396
size_t outl = 0;
crypto/openssl/crypto/evp/evp_lib.c
403
ret = ctx->cipher->ccipher(ctx->algctx, out, &outl,
crypto/openssl/crypto/evp/evp_lib.c
406
? (int)outl
crypto/openssl/crypto/evp/evp_lib.c
409
ret = ctx->cipher->cupdate(ctx->algctx, out, &outl,
crypto/openssl/crypto/evp/evp_lib.c
413
ret = ctx->cipher->cfinal(ctx->algctx, out, &outl,
crypto/openssl/crypto/evp/mac_lib.c
142
unsigned char *out, size_t *outl, size_t outsize)
crypto/openssl/crypto/evp/mac_lib.c
160
if (outl == NULL) {
crypto/openssl/crypto/evp/mac_lib.c
164
*outl = macsize;
crypto/openssl/crypto/evp/mac_lib.c
181
if (outl != NULL)
crypto/openssl/crypto/evp/mac_lib.c
182
*outl = l;
crypto/openssl/crypto/evp/mac_lib.c
187
unsigned char *out, size_t *outl, size_t outsize)
crypto/openssl/crypto/evp/mac_lib.c
189
return evp_mac_final(ctx, 0, out, outl, outsize);
crypto/openssl/crypto/evp/p_open.c
62
int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/p_open.c
66
i = EVP_DecryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/evp/p_seal.c
80
int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/p_seal.c
83
i = EVP_EncryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/http/http_client.c
1414
size_t outl;
crypto/openssl/crypto/http/http_client.c
1418
outl = (len / 3);
crypto/openssl/crypto/http/http_client.c
1420
outl++;
crypto/openssl/crypto/http/http_client.c
1421
outl <<= 2;
crypto/openssl/crypto/http/http_client.c
1422
out = OPENSSL_malloc(outl + 1);
crypto/openssl/crypto/http/http_client.c
1427
if (!ossl_assert(0 <= i && (size_t)i <= outl)) {
crypto/openssl/crypto/pem/pem_lib.c
636
int nlen, n, i, j, outl;
crypto/openssl/crypto/pem/pem_lib.c
670
if (!EVP_EncodeUpdate(ctx, buf, &outl, &(data[j]), n)) {
crypto/openssl/crypto/pem/pem_lib.c
674
if ((outl) && (BIO_write(bp, (char *)buf, outl) != outl)) {
crypto/openssl/crypto/pem/pem_lib.c
678
i += outl;
crypto/openssl/crypto/pem/pem_lib.c
682
EVP_EncodeFinal(ctx, buf, &outl);
crypto/openssl/crypto/pem/pem_lib.c
683
if ((outl > 0) && (BIO_write(bp, (char *)buf, outl) != outl)) {
crypto/openssl/crypto/pem/pem_lib.c
691
retval = i + outl;
crypto/openssl/crypto/srp/srp_vfy.c
101
if ((int)padsize >= outl) {
crypto/openssl/crypto/srp/srp_vfy.c
102
outl = -1;
crypto/openssl/crypto/srp/srp_vfy.c
119
memmove(a, a + padsize, outl - padsize);
crypto/openssl/crypto/srp/srp_vfy.c
120
outl -= padsize;
crypto/openssl/crypto/srp/srp_vfy.c
126
return outl;
crypto/openssl/crypto/srp/srp_vfy.c
136
int outl = 0, outl2 = 0;
crypto/openssl/crypto/srp/srp_vfy.c
153
&& !EVP_EncodeUpdate(ctx, (unsigned char *)dst, &outl, pad,
crypto/openssl/crypto/srp/srp_vfy.c
159
if (!EVP_EncodeUpdate(ctx, (unsigned char *)dst + outl, &outl2, src,
crypto/openssl/crypto/srp/srp_vfy.c
164
outl += outl2;
crypto/openssl/crypto/srp/srp_vfy.c
165
EVP_EncodeFinal(ctx, (unsigned char *)dst + outl, &outl2);
crypto/openssl/crypto/srp/srp_vfy.c
166
outl += outl2;
crypto/openssl/crypto/srp/srp_vfy.c
170
memmove(dst, dst + leadz, outl - leadz);
crypto/openssl/crypto/srp/srp_vfy.c
171
dst[outl - leadz] = '\0';
crypto/openssl/crypto/srp/srp_vfy.c
47
int outl = 0, outl2 = 0;
crypto/openssl/crypto/srp/srp_vfy.c
76
outl = -1;
crypto/openssl/crypto/srp/srp_vfy.c
87
&& EVP_DecodeUpdate(ctx, a, &outl, pad, padsize) < 0) {
crypto/openssl/crypto/srp/srp_vfy.c
88
outl = -1;
crypto/openssl/crypto/srp/srp_vfy.c
92
outl = -1;
crypto/openssl/crypto/srp/srp_vfy.c
95
outl += outl2;
crypto/openssl/crypto/srp/srp_vfy.c
96
EVP_DecodeFinal(ctx, a + outl, &outl2);
crypto/openssl/crypto/srp/srp_vfy.c
97
outl += outl2;
crypto/openssl/include/openssl/core_dispatch.h
325
unsigned char *out, size_t *outl, size_t outsz))
crypto/openssl/include/openssl/core_dispatch.h
328
unsigned char *out, size_t *outl, size_t outsz))
crypto/openssl/include/openssl/core_dispatch.h
331
unsigned char *out, size_t *outl, size_t outsz))
crypto/openssl/include/openssl/core_dispatch.h
377
unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/include/openssl/core_dispatch.h
381
unsigned char *out, size_t *outl, size_t outsize))
crypto/openssl/include/openssl/core_dispatch.h
384
unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/include/openssl/core_dispatch.h
398
unsigned char **out, size_t *outl, const size_t *outsize,
crypto/openssl/include/openssl/core_dispatch.h
402
unsigned char **out, size_t *outl, const size_t *outsize))
crypto/openssl/include/openssl/core_dispatch.h
441
unsigned char *out, size_t *outl, size_t outsize))
crypto/openssl/include/openssl/evp.h
1273
unsigned char *out, size_t *outl, size_t outsize);
crypto/openssl/include/openssl/evp.h
781
int *outl, const unsigned char *in, int inl);
crypto/openssl/include/openssl/evp.h
783
int *outl);
crypto/openssl/include/openssl/evp.h
785
int *outl);
crypto/openssl/include/openssl/evp.h
798
int *outl, const unsigned char *in, int inl);
crypto/openssl/include/openssl/evp.h
800
int *outl);
crypto/openssl/include/openssl/evp.h
802
int *outl);
crypto/openssl/include/openssl/evp.h
818
int *outl, const unsigned char *in, int inl);
crypto/openssl/include/openssl/evp.h
820
int *outl);
crypto/openssl/include/openssl/evp.h
832
unsigned char **out, size_t *outl,
crypto/openssl/include/openssl/evp.h
836
unsigned char **outm, size_t *outl,
crypto/openssl/include/openssl/evp.h
839
int *outl);
crypto/openssl/include/openssl/evp.h
886
__owur int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
crypto/openssl/include/openssl/evp.h
891
__owur int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
crypto/openssl/include/openssl/evp.h
898
int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/include/openssl/evp.h
900
void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
crypto/openssl/include/openssl/evp.h
904
int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/include/openssl/evp.h
906
int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.c
138
static int ossl_aes_gcm_siv_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.c
154
if (outl != NULL && !error)
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.c
155
*outl = inl;
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.c
159
static int ossl_aes_gcm_siv_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.c
170
if (outl != NULL && !error)
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.c
171
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
159
unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
204
*outl = outlint;
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
229
static int aes_ocb_block_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
242
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
256
return aes_ocb_block_update_internal(ctx, buf, buflen, out, outl, outsize,
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
260
static int aes_ocb_block_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
276
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
280
*outl = ctx->data_buf_len;
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
504
static int aes_ocb_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
522
*outl = inl;
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
113
static int siv_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
129
if (outl != NULL)
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
130
*outl = inl;
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
134
static int siv_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
145
if (outl != NULL)
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
146
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
224
static int aes_wrap_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
230
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
235
unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
245
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
258
*outl = len;
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
176
static int aes_xts_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
183
return s390x_aes_xts_cipher(vctx, out, outl, outsize, in, inl);
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
212
*outl = inl;
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
216
static int aes_xts_stream_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
227
if (!aes_xts_cipher(ctx, out, outl, outsize, in, inl)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
235
static int aes_xts_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
240
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.c
295
size_t *outl, size_t outsize,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.c
305
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.c
314
if (!hw->aead_cipher(ctx, out, outl, in, inl))
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.c
320
static int chacha20_poly1305_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.c
329
if (hw->aead_cipher(ctx, out, outl, NULL, 0) <= 0)
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.c
332
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.h
37
int (*aead_cipher)(PROV_CIPHER_CTX *dat, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
267
unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
283
return chacha20_poly1305_tls_cipher(bctx, out, outl, in, inl);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
395
*outl = olen;
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
327
int ossl_cipher_cbc_cts_block_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
339
*outl = inl;
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
368
*outl = sz;
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
372
int ossl_cipher_cbc_cts_block_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
375
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_null.c
65
static int null_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_null.c
87
*outl = inl;
crypto/openssl/providers/implementations/ciphers/cipher_null.c
92
static int null_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_null.c
98
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
121
static int sm4_xts_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
160
*outl = inl;
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
164
static int sm4_xts_stream_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
175
if (!sm4_xts_cipher(ctx, out, outl, outsize, in, inl)) {
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
183
static int sm4_xts_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
188
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
127
unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
133
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
146
*outl = ret;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
150
static int tdes_wrap_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
154
*outl = 0;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
162
if (!tdes_wrap_cipher(vctx, out, outl, outsize, in, inl)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
271
size_t *outl, size_t outsize,
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
347
*outl = inl;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
350
out, outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
411
*outl = outlint;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
416
size_t *outl, size_t outsize)
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
439
*outl = 0;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
455
*outl = blksz;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
462
*outl = 0;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
484
*outl = ctx->bufsz;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
490
size_t *outl, size_t outsize,
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
501
*outl = 0;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
515
*outl = inl;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
526
if (!ossl_assert(*outl >= (size_t)(out[inl - 1] + 1)))
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
529
*outl -= out[inl - 1] + 1;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
535
if (!ossl_assert(*outl >= ctx->removetlsfixed))
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
537
*outl -= ctx->removetlsfixed;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
541
if (*outl < ctx->tlsmacsize)
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
544
ctx->tlsmac = out + *outl - ctx->tlsmacsize;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
545
*outl -= ctx->tlsmacsize;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
552
size_t *outl, size_t outsize)
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
564
*outl = 0;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
568
int ossl_cipher_generic_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
592
*outl = inl;
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
269
int ossl_ccm_stream_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
280
if (!ccm_cipher_internal(ctx, out, outl, in, inl)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
287
int ossl_ccm_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
296
i = ccm_cipher_internal(ctx, out, outl, NULL, 0);
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
300
*outl = 0;
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
304
int ossl_ccm_cipher(void *vctx, unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
317
if (ccm_cipher_internal(ctx, out, outl, in, inl) <= 0)
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
320
*outl = inl;
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
327
int ossl_gcm_stream_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
333
*outl = 0;
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
342
if (gcm_cipher_internal(ctx, out, outl, in, inl) <= 0) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
349
int ossl_gcm_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
358
i = gcm_cipher_internal(ctx, out, outl, NULL, 0);
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
362
*outl = 0;
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
367
unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
380
if (gcm_cipher_internal(ctx, out, outl, in, inl) <= 0)
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
383
*outl = inl;
crypto/openssl/providers/implementations/digests/blake2_prov.c
148
size_t *outl, size_t outsz) \
crypto/openssl/providers/implementations/digests/blake2_prov.c
157
*outl = b_ctx->ctx.outlen; \
crypto/openssl/providers/implementations/digests/blake2_prov.c
162
if (outsz < *outl) { \
crypto/openssl/providers/implementations/digests/null_prov.c
40
static int name##_internal_final(void *ctx, unsigned char *out, size_t *outl, \
crypto/openssl/providers/implementations/digests/null_prov.c
44
*outl = dgstsize; \
crypto/openssl/providers/implementations/digests/sha3_prov.c
110
static int keccak_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/digests/sha3_prov.c
125
*outl = ctx->md_size;
crypto/openssl/providers/implementations/digests/sha3_prov.c
129
static int shake_squeeze(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/digests/sha3_prov.c
142
*outl = outlen;
crypto/openssl/providers/implementations/include/prov/digestcommon.h
42
static int name##_internal_final(void *ctx, unsigned char *out, size_t *outl, \
crypto/openssl/providers/implementations/include/prov/digestcommon.h
46
*outl = dgstsize; \
crypto/openssl/providers/implementations/macs/blake2_mac_impl.c
135
unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/blake2_mac_impl.c
143
*outl = blake2_mac_size(macctx);
crypto/openssl/providers/implementations/macs/cmac_prov.c
191
static int cmac_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/cmac_prov.c
199
return CMAC_Final(macctx->ctx, out, outl);
crypto/openssl/providers/implementations/macs/gmac_prov.c
145
static int gmac_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/gmac_prov.c
164
*outl = hlen;
crypto/openssl/providers/implementations/macs/hmac_prov.c
248
static int hmac_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/hmac_prov.c
259
if (outl != NULL)
crypto/openssl/providers/implementations/macs/hmac_prov.c
260
*outl = macctx->tls_mac_out_size;
crypto/openssl/providers/implementations/macs/hmac_prov.c
266
*outl = hlen;
crypto/openssl/providers/implementations/macs/kmac_prov.c
370
static int kmac_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/kmac_prov.c
388
*outl = kctx->out_len;
crypto/openssl/providers/implementations/macs/poly1305_prov.c
121
static int poly1305_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/poly1305_prov.c
130
*outl = poly1305_size();
crypto/openssl/providers/implementations/macs/siphash_prov.c
138
static int siphash_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/siphash_prov.c
147
*outl = hlen;
crypto/openssl/providers/implementations/rands/drbg_ctr.c
399
int outl, buflen;
crypto/openssl/providers/implementations/rands/drbg_ctr.c
454
if (!EVP_CipherUpdate(ctr->ctx_ctr, out, &outl, out, buflen)
crypto/openssl/providers/implementations/rands/drbg_ctr.c
455
|| outl != buflen)
crypto/openssl/ssl/quic/quic_srt_gen.c
67
size_t outl = 0;
crypto/openssl/ssl/quic/quic_srt_gen.c
77
if (!EVP_MAC_final(srt_gen->mac_ctx, mac, &outl, sizeof(mac))
crypto/openssl/ssl/quic/quic_srt_gen.c
78
|| outl != sizeof(mac))
crypto/openssl/ssl/quic/quic_srtm.c
270
int outl = 0;
crypto/openssl/ssl/quic/quic_srtm.c
277
if (!EVP_EncryptUpdate(srtm->blind_ctx, item->srt_blinded, &outl,
crypto/openssl/ssl/quic/quic_srtm.c
281
if (!ossl_assert(outl == sizeof(*token)))
crypto/openssl/test/asynciotest.c
29
static int async_read(BIO *b, char *out, int outl);
crypto/openssl/test/asynciotest.c
89
static int async_read(BIO *bio, char *out, int outl)
crypto/openssl/test/asynciotest.c
95
if (outl <= 0)
crypto/openssl/test/bio_dgram_test.c
458
int ret = 0, outl;
crypto/openssl/test/bio_dgram_test.c
478
outl = data_len > sizeof(zeroes) ? (int)sizeof(zeroes) : (int)data_len;
crypto/openssl/test/bio_dgram_test.c
479
if (EVP_EncryptUpdate(ctx, data, &outl, zeroes, outl) != 1)
crypto/openssl/test/bio_dgram_test.c
482
data += outl;
crypto/openssl/test/bio_dgram_test.c
483
data_len -= outl;
crypto/openssl/test/evp_extra_test.c
6557
int outl = 0;
crypto/openssl/test/evp_extra_test.c
6571
if (!TEST_int_eq(EVP_EncryptUpdate(ctx, buffer, &outl, (unsigned char *)"test", -1), 0))
crypto/openssl/test/evp_extra_test.c
6579
if (!TEST_int_eq(EVP_DecryptUpdate(ctx, buffer, &outl, (unsigned char *)"test", -1), 0))
crypto/openssl/test/fake_cipherprov.c
165
static int fake_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/test/fake_cipherprov.c
177
*outl = inl;
crypto/openssl/test/fake_cipherprov.c
182
static int fake_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/test/fake_cipherprov.c
185
*outl = 0;
crypto/openssl/test/fake_pipelineprov.c
117
unsigned char **out, size_t *outl,
crypto/openssl/test/fake_pipelineprov.c
132
outl[i] = (size_t)ioutl;
crypto/openssl/test/fake_pipelineprov.c
138
unsigned char **out, size_t *outl,
crypto/openssl/test/fake_pipelineprov.c
148
outl[i] = (size_t)ioutl;
crypto/openssl/test/helpers/ssltestlib.c
199
static int tls_dump_read(BIO *bio, char *out, int outl)
crypto/openssl/test/helpers/ssltestlib.c
204
ret = BIO_read(next, out, outl);
crypto/openssl/test/helpers/ssltestlib.c
284
static int mempacket_test_read(BIO *b, char *out, int outl);
crypto/openssl/test/helpers/ssltestlib.c
349
static int mempacket_test_read(BIO *bio, char *out, int outl)
crypto/openssl/test/helpers/ssltestlib.c
35
static int tls_dump_read(BIO *b, char *out, int outl);
crypto/openssl/test/helpers/ssltestlib.c
367
if (outl > thispkt->len)
crypto/openssl/test/helpers/ssltestlib.c
368
outl = thispkt->len;
crypto/openssl/test/helpers/ssltestlib.c
401
outl -= len;
crypto/openssl/test/helpers/ssltestlib.c
403
if (outl == 0)
crypto/openssl/test/helpers/ssltestlib.c
413
memcpy(out, thispkt->data, outl);
crypto/openssl/test/helpers/ssltestlib.c
415
return outl;
crypto/openssl/test/helpers/ssltestlib.c
754
static int always_retry_read(BIO *b, char *out, int outl);
crypto/openssl/test/helpers/ssltestlib.c
807
static int always_retry_read(BIO *bio, char *out, int outl)
crypto/openssl/test/sslcorrupttest.c
26
static int tls_corrupt_read(BIO *bio, char *out, int outl)
crypto/openssl/test/sslcorrupttest.c
31
ret = BIO_read(next, out, outl);
crypto/openssl/test/tls13ccstest.c
29
static int watchccs_read(BIO *b, char *out, int outl);
crypto/openssl/test/tls13ccstest.c
70
static int watchccs_read(BIO *bio, char *out, int outl)
crypto/openssl/test/tls13ccstest.c
75
if (outl <= 0)
crypto/openssl/test/tls13ccstest.c
82
ret = BIO_read(next, out, outl);
crypto/openssl/test/user_property_test.c
40
unsigned char *out, size_t *outl, size_t outsz)
sys/amd64/amd64/machdep.c
254
outl(ICH_SMI_EN, inl(ICH_SMI_EN) & ~0x8);
sys/amd64/include/iodev.h
39
#define iodev_write_4 outl
sys/amd64/pci/pci_cfgreg.c
187
outl(CONF1_ADDR_PORT, (1U << 31) | (bus << 16) | (slot << 11)
sys/amd64/pci/pci_cfgreg.c
247
outl(port, data);
sys/compat/linuxkpi/common/include/asm-generic/io.h
36
#define outl(a,b) outl(b,a)
sys/dev/hpt27xx/hpt27xx_os_bsd.c
44
void os_outl (void *port, HPT_U32 value) { outl((unsigned)(HPT_UPTR)port, (value)); }
sys/dev/hptnr/hptnr_os_bsd.c
43
void os_outl (void *port, HPT_U32 value) { outl((unsigned)(HPT_UPTR)port, (value)); }
sys/dev/hptrr/hptrr_os_bsd.c
44
void os_outl (void *port, HPT_U32 value) { outl((unsigned)(HPT_UPTR)port, (value)); }
sys/i386/i386/geode.c
113
outl(gpio, u);
sys/i386/i386/geode.c
135
outl(a, 1 << bit);
sys/i386/i386/geode.c
137
outl(a, 1 << (bit + 16));
sys/i386/i386/geode.c
284
outl(cba + 0x0d, 2);
sys/i386/i386/machdep.c
237
outl(ICH_SMI_EN, inl(ICH_SMI_EN) & ~0x8);
sys/i386/include/iodev.h
39
#define iodev_write_4 outl
sys/i386/pci/pci_cfgreg.c
263
outl(CONF1_ADDR_PORT, (1U << 31)
sys/i386/pci/pci_cfgreg.c
340
outl(port, data);
sys/i386/pci/pci_cfgreg.c
413
outl(CONF1_ADDR_PORT, CONF1_ENABLE_CHK);
sys/i386/pci/pci_cfgreg.c
416
outl(CONF1_ADDR_PORT, oldval1);
sys/i386/pci/pci_cfgreg.c
427
outl(CONF1_ADDR_PORT, CONF1_ENABLE_CHK1);
sys/i386/pci/pci_cfgreg.c
429
outl(CONF1_ADDR_PORT, oldval1);
sys/powerpc/include/pio.h
157
#define out32(a,v) outl(a,v)
sys/powerpc/powermac/uninorth.c
240
outl(reg, tmpl);
sys/x86/include/bus.h
485
outl(bsh + offset, value);
sys/x86/include/bus.h
742
outl(addr, value);
sys/x86/include/bus.h
806
outl(addr, value);
sys/x86/include/bus.h
921
outl(addr2, inl(addr1));
sys/x86/include/bus.h
926
outl(addr2, inl(addr1));
sys/x86/x86/cpu_machdep.c
515
outl(0xcf8, 0x80009044ul);
sys/x86/x86/cpu_machdep.c
516
outl(0xcfc, 0xf);
tests/sys/kern/ktls_test.c
310
int outl, total;
tests/sys/kern/ktls_test.c
326
if (EVP_CipherUpdate(ctx, (u_char *)output, &outl,
tests/sys/kern/ktls_test.c
333
total = outl;
tests/sys/kern/ktls_test.c
334
if (EVP_CipherFinal_ex(ctx, (u_char *)output + outl, &outl) != 1) {
tests/sys/kern/ktls_test.c
340
total += outl;
tests/sys/kern/ktls_test.c
428
int outl, total;
tests/sys/kern/ktls_test.c
445
if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)aad,
tests/sys/kern/ktls_test.c
453
if (EVP_EncryptUpdate(ctx, (u_char *)output, &outl,
tests/sys/kern/ktls_test.c
460
total = outl;
tests/sys/kern/ktls_test.c
461
if (EVP_EncryptFinal_ex(ctx, (u_char *)output + outl, &outl) != 1) {
tests/sys/kern/ktls_test.c
467
total += outl;
tests/sys/kern/ktls_test.c
490
int outl, total;
tests/sys/kern/ktls_test.c
508
if (EVP_DecryptUpdate(ctx, NULL, &outl, (const u_char *)aad,
tests/sys/kern/ktls_test.c
516
if (EVP_DecryptUpdate(ctx, (u_char *)output, &outl,
tests/sys/kern/ktls_test.c
523
total = outl;
tests/sys/kern/ktls_test.c
531
valid = (EVP_DecryptFinal_ex(ctx, (u_char *)output + outl, &outl) == 1);
tests/sys/kern/ktls_test.c
532
total += outl;
tools/tools/bhyve/fwctl_fetch.c
50
outl(FWCTL_OUT, value);
tools/tools/bhyve/fwctl_fetch.c
58
outl(FWCTL_OUT, value);
tools/tools/bhyve/fwctl_fetch.c
69
outl(FWCTL_OUT, 12 + strlen(name) + 1);
tools/tools/bhyve/fwctl_fetch.c
72
outl(FWCTL_OUT, op);
tools/tools/bhyve/fwctl_fetch.c
75
outl(FWCTL_OUT, id);
tools/tools/crypto/cryptocheck.c
1112
int outl;
tools/tools/crypto/cryptocheck.c
1127
if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)input,
tools/tools/crypto/cryptocheck.c
1133
if (EVP_EncryptFinal_ex(ctx, NULL, &outl) != 1) {
tools/tools/crypto/cryptocheck.c
1328
int outl, total;
tools/tools/crypto/cryptocheck.c
1355
if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)aad,
tools/tools/crypto/cryptocheck.c
1363
if (EVP_EncryptUpdate(ctx, (u_char *)output, &outl,
tools/tools/crypto/cryptocheck.c
1369
total = outl;
tools/tools/crypto/cryptocheck.c
1370
if (EVP_EncryptFinal_ex(ctx, (u_char *)output + outl, &outl) != 1) {
tools/tools/crypto/cryptocheck.c
1375
total += outl;
tools/tools/crypto/cryptocheck.c
1402
int outl, total;
tools/tools/crypto/cryptocheck.c
1415
if (EVP_DecryptUpdate(ctx, NULL, &outl, (const u_char *)aad,
tools/tools/crypto/cryptocheck.c
1421
if (EVP_DecryptUpdate(ctx, (u_char *)output, &outl,
tools/tools/crypto/cryptocheck.c
1425
total = outl;
tools/tools/crypto/cryptocheck.c
1430
valid = (EVP_DecryptFinal_ex(ctx, (u_char *)output + outl, &outl) != 1);
tools/tools/crypto/cryptocheck.c
1431
total += outl;
tools/tools/crypto/cryptocheck.c
1446
int outl, total;
tools/tools/crypto/cryptocheck.c
1482
if (EVP_EncryptUpdate(ctx, NULL, &outl, NULL, size) != 1) {
tools/tools/crypto/cryptocheck.c
1490
if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)aad,
tools/tools/crypto/cryptocheck.c
1498
if (EVP_EncryptUpdate(ctx, (u_char *)output, &outl,
tools/tools/crypto/cryptocheck.c
1505
total = outl;
tools/tools/crypto/cryptocheck.c
1506
if (EVP_EncryptFinal_ex(ctx, (u_char *)output + outl, &outl) != 1) {
tools/tools/crypto/cryptocheck.c
1512
total += outl;
tools/tools/crypto/cryptocheck.c
717
int outl, total;
tools/tools/crypto/cryptocheck.c
732
if (EVP_CipherUpdate(ctx, (u_char *)output, &outl,
tools/tools/crypto/cryptocheck.c
738
total = outl;
tools/tools/crypto/cryptocheck.c
739
if (EVP_CipherFinal_ex(ctx, (u_char *)output + outl, &outl) != 1) {
tools/tools/crypto/cryptocheck.c
744
total += outl;