Searched refs:outl (Results 26 - 50 of 53) sorted by relevance

123

/freebsd-13-stable/crypto/openssl/crypto/bio/
H A Dbss_file.c137 static int file_read(BIO *b, char *out, int outl) argument
143 ret = UP_fread(out, 1, (int)outl, b->ptr);
145 ret = fread(out, 1, (int)outl, (FILE *)b->ptr);
370 static int file_read(BIO *b, char *out, int outl) argument
H A Dbss_mem.c194 static int mem_read(BIO *b, char *out, int outl) argument
203 ret = (outl >= 0 && (size_t)outl > bm->length) ? (int)bm->length : outl;
H A Dbss_conn.c313 static int conn_read(BIO *b, char *out, int outl) argument
329 ret = ktls_read_record(b->num, out, outl);
332 ret = readsocket(b->num, out, outl);
H A Dbf_lbuf.c96 static int linebuffer_read(BIO *b, char *out, int outl) argument
104 ret = BIO_read(b->next_bio, out, outl);
H A Dbss_acpt.c358 static int acpt_read(BIO *b, char *out, int outl) argument
372 ret = BIO_read(b->next_bio, out, outl);
H A Dbss_dgram.c297 static int dgram_read(BIO *b, char *out, int outl) argument
312 ret = recvfrom(b->num, out, outl, flags,
1005 static int dgram_sctp_read(BIO *b, char *out, int outl) argument
1022 iov.iov_len = outl;
1125 memset(out, 0, outl);
1130 && (ret < outl));
1139 if (ret == outl)
1171 memset(out, 0, outl);
/freebsd-13-stable/contrib/apr-util/crypto/
H A Dapr_crypto_nss.c848 int outl = (int) *outlen; local
863 s = PK11_CipherOp(block->ctx, *out, &outl, inlen, (unsigned char*) in,
873 *outlen = outl;
902 unsigned int outl = *outlen; local
904 SECStatus s = PK11_DigestFinal(block->ctx, out, &outl, block->blockSize);
905 *outlen = outl;
1011 int outl = (int) *outlen; local
1026 s = PK11_CipherOp(block->ctx, *out, &outl, inlen, (unsigned char*) in,
1036 *outlen = outl;
1065 unsigned int outl local
[all...]
/freebsd-13-stable/crypto/openssl/crypto/pem/
H A Dpem_lib.c605 int nlen, n, i, j, outl; local
639 if (!EVP_EncodeUpdate(ctx, buf, &outl, &(data[j]), n))
641 if ((outl) && (BIO_write(bp, (char *)buf, outl) != outl))
643 i += outl;
647 EVP_EncodeFinal(ctx, buf, &outl);
648 if ((outl > 0) && (BIO_write(bp, (char *)buf, outl) != outl))
[all...]
/freebsd-13-stable/crypto/openssl/crypto/comp/
H A Dc_zlib.c291 static int bio_zlib_read(BIO *b, char *out, int outl);
369 static int bio_zlib_read(BIO *b, char *out, int outl) argument
376 if (!out || !outl)
394 zin->avail_out = (unsigned int)outl;
406 return outl - zin->avail_out;
416 int tot = outl - zin->avail_out;
/freebsd-13-stable/crypto/openssl/include/openssl/
H A Devp.h589 int *outl, const unsigned char *in, int inl);
591 int *outl);
593 int *outl);
602 int *outl, const unsigned char *in, int inl);
604 int *outl);
606 int *outl);
616 int *outl, const unsigned char *in, int inl);
618 int *outl);
620 int *outl);
652 __owur int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
[all...]
/freebsd-13-stable/sys/amd64/pci/
H A Dpci_cfgreg.c146 outl(CONF1_ADDR_PORT, (1U << 31) | (bus << 16) | (slot << 11)
206 outl(port, data);
/freebsd-13-stable/crypto/openssl/crypto/rand/
H A Ddrbg_ctr.c324 int outl, buflen; local
379 if (!EVP_CipherUpdate(ctr->ctx_ctr, out, &outl, out, buflen)
380 || outl != buflen)
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_cryptor.c418 int outl = 0; local
424 r = EVP_EncryptUpdate(ctx->ctx, ctx->encr_buf, &outl, ctx->nonce,
426 if (r == 0 || outl != AES_BLOCK_SIZE)
H A Darchive_write_set_format_zip.c1097 size_t outl = zip->len_buf; local
1101 zip->buf, &outl);
1158 size_t outl = remainder; local
1161 zip->buf, &outl);
/freebsd-13-stable/sys/powerpc/include/
H A Dpio.h157 #define outl(a,v) (__outl((volatile u_int32_t *)(a), v)) macro
158 #define out32(a,v) outl(a,v)
/freebsd-13-stable/sys/x86/include/
H A Dbus.h509 outl(bsh + offset, value);
705 outl %%eax,%w0 \n\
784 outl(addr, value);
848 outl(addr, value);
963 outl(addr2, inl(addr1));
968 outl(addr2, inl(addr1));
1025 #define outl(a, b) compiler_error macro
/freebsd-13-stable/crypto/openssl/apps/
H A Dspeed.c924 int outl, count, rc; local
930 rc = EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
938 rc = EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
946 EVP_DecryptFinal_ex(ctx, buf, &outl);
948 EVP_EncryptFinal_ex(ctx, buf, &outl);
962 int outl, count; local
973 EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
978 EVP_EncryptUpdate(ctx, NULL, &outl, NULL, lengths[testnum]);
980 EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
984 EVP_DecryptFinal_ex(ctx, buf, &outl);
1000 int outl, count; local
[all...]
/freebsd-13-stable/sys/dev/hptrr/
H A Dhptrr_os_bsd.c46 void os_outl (void *port, HPT_U32 value) { outl((unsigned)(HPT_UPTR)port, (value)); }
/freebsd-13-stable/contrib/wpa/src/crypto/
H A Dcrypto_openssl.c225 int outl;
241 if (!EVP_CipherUpdate(ctx, skip_buf, &outl, skip_buf, len))
246 if (EVP_CipherUpdate(ctx, data, &outl, data, data_len))
721 int outl; local
722 if (!EVP_EncryptUpdate(ctx->enc, crypt, &outl, plain, len))
731 int outl; local
732 outl = len;
733 if (!EVP_DecryptUpdate(ctx->dec, plain, &outl, crypt, len))
/freebsd-13-stable/sys/i386/include/
H A Dcpufunc.h311 outl(u_int port, u_int data) function
313 __asm __volatile("outl %0, %w1" : : "a" (data), "Nd" (port));
793 void outl(u_int port, u_int data);
/freebsd-13-stable/sys/amd64/include/
H A Dcpufunc.h242 outl(u_int port, u_int data) function
244 __asm __volatile("outl %0, %w1" : : "a" (data), "Nd" (port));
983 void outl(u_int port, u_int data);
/freebsd-13-stable/sys/dev/hpt27xx/
H A Dhpt27xx_os_bsd.c46 void os_outl (void *port, HPT_U32 value) { outl((unsigned)(HPT_UPTR)port, (value)); }
/freebsd-13-stable/sys/dev/hptnr/
H A Dhptnr_os_bsd.c45 void os_outl (void *port, HPT_U32 value) { outl((unsigned)(HPT_UPTR)port, (value)); }
/freebsd-13-stable/sys/x86/x86/
H A Dcpu_machdep.c355 outl(0xcf8, 0x80009044ul);
356 outl(0xcfc, 0xf);
/freebsd-13-stable/sys/powerpc/powermac/
H A Duninorth.c233 outl(reg, tmpl);

Completed in 307 milliseconds

123