Symbol: outl
crypto/libressl/apps/openssl/speed.c
1457
int outl;
crypto/libressl/apps/openssl/speed.c
1483
EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[j]);
crypto/libressl/apps/openssl/speed.c
1486
EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[j]);
crypto/libressl/apps/openssl/speed.c
1488
EVP_DecryptFinal_ex(ctx, buf, &outl);
crypto/libressl/apps/openssl/speed.c
1490
EVP_EncryptFinal_ex(ctx, buf, &outl);
crypto/libressl/crypto/bio/bf_buff.c
147
buffer_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/bio/bf_buff.c
165
if (i > outl)
crypto/libressl/crypto/bio/bf_buff.c
166
i = outl;
crypto/libressl/crypto/bio/bf_buff.c
171
if (outl == i)
crypto/libressl/crypto/bio/bf_buff.c
173
outl -= i;
crypto/libressl/crypto/bio/bf_buff.c
182
if (outl > ctx->ibuf_size) {
crypto/libressl/crypto/bio/bf_buff.c
184
i = BIO_read(b->next_bio, out, outl);
crypto/libressl/crypto/bio/bf_buff.c
193
if (outl == i)
crypto/libressl/crypto/bio/bf_buff.c
196
outl -= i;
crypto/libressl/crypto/bio/bf_nbio.c
132
nbiof_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/bio/bf_nbio.c
148
if (outl > num)
crypto/libressl/crypto/bio/bf_nbio.c
149
outl = num;
crypto/libressl/crypto/bio/bf_nbio.c
155
ret = BIO_read(b->next_bio, out, outl);
crypto/libressl/crypto/bio/bio_lib.c
321
BIO_read(BIO *b, void *out, int outl)
crypto/libressl/crypto/bio/bio_lib.c
329
if (out == NULL || outl <= 0)
crypto/libressl/crypto/bio/bio_lib.c
338
if ((ret = (int)bio_call_callback(b, BIO_CB_READ, out, outl, 0,
crypto/libressl/crypto/bio/bio_lib.c
348
if ((ret = b->method->bread(b, out, outl)) > 0)
crypto/libressl/crypto/bio/bio_lib.c
355
out, outl, 0, 0L, (ret > 0) ? 1 : ret, &readbytes);
crypto/libressl/crypto/bio/bss_acpt.c
291
acpt_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/bio/bss_acpt.c
305
ret = BIO_read(b->next_bio, out, outl);
crypto/libressl/crypto/bio/bss_conn.c
377
conn_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/bio/bss_conn.c
391
ret = read(b->num, out, outl);
crypto/libressl/crypto/bio/bss_dgram.c
251
dgram_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/bio/bss_dgram.c
271
ret = recvfrom(b->num, out, outl, 0, &sa.peer.sa, &sa.len);
crypto/libressl/crypto/bio/bss_fd.c
134
fd_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/bio/bss_fd.c
140
ret = read(b->num, out, outl);
crypto/libressl/crypto/bio/bss_file.c
186
file_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/bio/bss_file.c
191
ret = fread(out, 1, outl, (FILE *)b->ptr);
crypto/libressl/crypto/bio/bss_null.c
111
null_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/bio/bss_sock.c
134
sock_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/bio/bss_sock.c
140
ret = read(b->num, out, outl);
crypto/libressl/crypto/cms/cms_pwri.c
228
int outl, rv = 0;
crypto/libressl/crypto/cms/cms_pwri.c
244
if (!EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl,
crypto/libressl/crypto/cms/cms_pwri.c
251
|| !EVP_DecryptUpdate(ctx, tmp, &outl, tmp + inlen - blocklen, blocklen)
crypto/libressl/crypto/cms/cms_pwri.c
253
|| !EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen)
crypto/libressl/crypto/cms/cms_pwri.c
258
|| !EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen))
crypto/libressl/crypto/evp/bio_b64.c
152
b64_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/evp/bio_b64.c
179
if (i > outl)
crypto/libressl/crypto/evp/bio_b64.c
180
i = outl;
crypto/libressl/crypto/evp/bio_b64.c
185
outl -= i;
crypto/libressl/crypto/evp/bio_b64.c
197
while (outl > 0) {
crypto/libressl/crypto/evp/bio_b64.c
333
if (ctx->buf_len <= outl)
crypto/libressl/crypto/evp/bio_b64.c
336
i = outl;
crypto/libressl/crypto/evp/bio_b64.c
345
outl -= i;
crypto/libressl/crypto/evp/bio_enc.c
149
enc_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/evp/bio_enc.c
164
if (i > outl)
crypto/libressl/crypto/evp/bio_enc.c
165
i = outl;
crypto/libressl/crypto/evp/bio_enc.c
169
outl -= i;
crypto/libressl/crypto/evp/bio_enc.c
180
while (outl > 0) {
crypto/libressl/crypto/evp/bio_enc.c
216
if (ctx->buf_len <= outl)
crypto/libressl/crypto/evp/bio_enc.c
219
i = outl;
crypto/libressl/crypto/evp/bio_enc.c
225
outl -= i;
crypto/libressl/crypto/evp/bio_md.c
126
md_read(BIO *b, char *out, int outl)
crypto/libressl/crypto/evp/bio_md.c
138
ret = BIO_read(b->next_bio, out, outl);
crypto/libressl/crypto/evp/encode.c
147
EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/crypto/evp/encode.c
153
*outl = 0;
crypto/libressl/crypto/evp/encode.c
185
*outl = 0;
crypto/libressl/crypto/evp/encode.c
191
*outl = total;
crypto/libressl/crypto/evp/encode.c
197
EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl)
crypto/libressl/crypto/evp/encode.c
207
*outl = ret;
crypto/libressl/crypto/evp/encode.c
252
EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/crypto/evp/encode.c
354
*outl = ret;
crypto/libressl/crypto/evp/encode.c
400
EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl)
crypto/libressl/crypto/evp/encode.c
404
*outl = 0;
crypto/libressl/crypto/evp/encode.c
410
*outl = i;
crypto/libressl/crypto/evp/evp_enc.c
235
EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/crypto/evp/evp_enc.c
239
return EVP_EncryptUpdate(ctx, out, outl, in, inl);
crypto/libressl/crypto/evp/evp_enc.c
241
return EVP_DecryptUpdate(ctx, out, outl, in, inl);
crypto/libressl/crypto/evp/evp_enc.c
245
EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/libressl/crypto/evp/evp_enc.c
248
return EVP_EncryptFinal_ex(ctx, out, outl);
crypto/libressl/crypto/evp/evp_enc.c
250
return EVP_DecryptFinal_ex(ctx, out, outl);
crypto/libressl/crypto/evp/evp_enc.c
257
EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/libressl/crypto/evp/evp_enc.c
261
ret = EVP_EncryptFinal_ex(ctx, out, outl);
crypto/libressl/crypto/evp/evp_enc.c
263
ret = EVP_DecryptFinal_ex(ctx, out, outl);
crypto/libressl/crypto/evp/evp_enc.c
296
EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/crypto/evp/evp_enc.c
301
*outl = 0;
crypto/libressl/crypto/evp/evp_enc.c
314
*outl = i;
crypto/libressl/crypto/evp/evp_enc.c
320
*outl = inl;
crypto/libressl/crypto/evp/evp_enc.c
323
*outl = 0;
crypto/libressl/crypto/evp/evp_enc.c
331
*outl = 0;
crypto/libressl/crypto/evp/evp_enc.c
338
*outl = 0;
crypto/libressl/crypto/evp/evp_enc.c
359
*outl = bl;
crypto/libressl/crypto/evp/evp_enc.c
362
*outl = 0;
crypto/libressl/crypto/evp/evp_enc.c
368
*outl += inl;
crypto/libressl/crypto/evp/evp_enc.c
381
EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/libressl/crypto/evp/evp_enc.c
385
ret = EVP_EncryptFinal_ex(ctx, out, outl);
crypto/libressl/crypto/evp/evp_enc.c
390
EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/libressl/crypto/evp/evp_enc.c
400
*outl = ret;
crypto/libressl/crypto/evp/evp_enc.c
410
*outl = 0;
crypto/libressl/crypto/evp/evp_enc.c
419
*outl = 0;
crypto/libressl/crypto/evp/evp_enc.c
430
*outl = b;
crypto/libressl/crypto/evp/evp_enc.c
436
EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/crypto/evp/evp_enc.c
442
*outl = 0;
crypto/libressl/crypto/evp/evp_enc.c
453
*outl = 0;
crypto/libressl/crypto/evp/evp_enc.c
456
*outl = fix_len;
crypto/libressl/crypto/evp/evp_enc.c
461
return EVP_EncryptUpdate(ctx, out, outl, in, inl);
crypto/libressl/crypto/evp/evp_enc.c
487
if (!EVP_EncryptUpdate(ctx, out, outl, in, inl))
crypto/libressl/crypto/evp/evp_enc.c
493
*outl -= b;
crypto/libressl/crypto/evp/evp_enc.c
495
memcpy(ctx->final, &out[*outl], b);
crypto/libressl/crypto/evp/evp_enc.c
500
*outl += b;
crypto/libressl/crypto/evp/evp_enc.c
509
EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/libressl/crypto/evp/evp_enc.c
513
ret = EVP_DecryptFinal_ex(ctx, out, outl);
crypto/libressl/crypto/evp/evp_enc.c
518
EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/libressl/crypto/evp/evp_enc.c
522
*outl = 0;
crypto/libressl/crypto/evp/evp_enc.c
529
*outl = i;
crypto/libressl/crypto/evp/evp_enc.c
539
*outl = 0;
crypto/libressl/crypto/evp/evp_enc.c
565
*outl = n;
crypto/libressl/crypto/evp/evp_enc.c
567
*outl = 0;
crypto/libressl/crypto/pem/pem_lib.c
598
int nlen, n, i, j, outl;
crypto/libressl/crypto/pem/pem_lib.c
626
if (!EVP_EncodeUpdate(&ctx, buf, &outl, &(data[j]), n))
crypto/libressl/crypto/pem/pem_lib.c
628
if ((outl) && (BIO_write(bp, (char *)buf, outl) != outl))
crypto/libressl/crypto/pem/pem_lib.c
630
i += outl;
crypto/libressl/crypto/pem/pem_lib.c
634
EVP_EncodeFinal(&ctx, buf, &outl);
crypto/libressl/crypto/pem/pem_lib.c
635
if ((outl > 0) && (BIO_write(bp, (char *)buf, outl) != outl))
crypto/libressl/crypto/pem/pem_lib.c
643
return (i + outl);
crypto/libressl/include/openssl/evp.h
476
int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/include/openssl/evp.h
478
int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
crypto/libressl/include/openssl/evp.h
480
int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
crypto/libressl/include/openssl/evp.h
487
int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/include/openssl/evp.h
489
int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
crypto/libressl/include/openssl/evp.h
491
int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
crypto/libressl/include/openssl/evp.h
498
int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/include/openssl/evp.h
500
int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
crypto/libressl/include/openssl/evp.h
502
int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
crypto/libressl/include/openssl/evp.h
528
int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
crypto/libressl/include/openssl/evp.h
533
int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
crypto/libressl/include/openssl/evp.h
538
int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/include/openssl/evp.h
540
void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
crypto/libressl/include/openssl/evp.h
544
int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/include/openssl/evp.h
546
int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
crypto/libressl/ssl/bio_ssl.c
144
ssl_read(BIO *b, char *out, int outl)
crypto/libressl/ssl/bio_ssl.c
159
ret = SSL_read(ssl, out, outl);
crypto/libressl/ssl/bio_ssl.c
216
ssl_write(BIO *b, const char *out, int outl)
crypto/libressl/ssl/bio_ssl.c
232
ret = SSL_write(ssl, out, outl);
sys/bus/pci/x86_64/pci_cfgreg.c
194
outl(CONF1_ADDR_PORT, (1 << 31) | (bus << 16) | (slot << 11) |
sys/bus/pci/x86_64/pci_cfgreg.c
253
outl(port, data);
sys/cpu/x86_64/include/bus_dma.h
409
outl(bsh + offset, value);
sys/cpu/x86_64/include/bus_dma.h
673
outl(addr, value);
sys/cpu/x86_64/include/bus_dma.h
737
outl(addr, value);
sys/cpu/x86_64/include/bus_dma.h
852
outl(addr2, inl(addr1));
sys/cpu/x86_64/include/bus_dma.h
857
outl(addr2, inl(addr1));
sys/cpu/x86_64/include/cpufunc.h
964
void outl(u_int port, u_int data);
sys/dev/raid/hpt27xx/hpt27xx_os_bsd.c
40
void os_outl (void *port, HPT_U32 value) { outl((unsigned)(HPT_UPTR)port, (value)); }
sys/dev/raid/hptrr/hptrr_os_bsd.c
44
void os_outl (void *port, HPT_U32 value) { outl((unsigned)(HPT_UPTR)port, (value)); }
sys/platform/pc64/apic/lapic.c
219
outl(0x0cf8,
sys/platform/pc64/apic/lapic.c
229
outl(0xcfc, tcr|0x00010000);
sys/platform/pc64/apic/lapic.c
231
outl(0x0cf8, 0);
usr.sbin/pw/edgroup.c
108
if (extendline(&outl, &outlen, l) == -1) {
usr.sbin/pw/edgroup.c
112
strcpy(outl, line);
usr.sbin/pw/edgroup.c
114
*outl = '\0';
usr.sbin/pw/edgroup.c
190
fmtgrentry(&outl, &outlen, &grp, PWF_GROUP);
usr.sbin/pw/edgroup.c
192
fputs(outl, outfp);
usr.sbin/pw/edgroup.c
202
while (fgets(outl, outlen, outfp) != NULL)
usr.sbin/pw/edgroup.c
203
fputs(outl, infp);
usr.sbin/pw/edgroup.c
216
free(outl);
usr.sbin/pw/edgroup.c
86
char *outl = malloc(outlen);
usr.sbin/pw/edgroup.c
90
if (line == NULL || outl == NULL || mems == NULL) {