Searched refs:outl (Results 1 - 25 of 64) sorted by relevance

123

/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Devp_enc.c270 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, argument
274 return EVP_EncryptUpdate(ctx, out, outl, in, inl);
276 return EVP_DecryptUpdate(ctx, out, outl, in, inl);
279 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
282 return EVP_EncryptFinal_ex(ctx, out, outl);
284 return EVP_DecryptFinal_ex(ctx, out, outl);
287 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
290 return EVP_EncryptFinal(ctx, out, outl);
292 return EVP_DecryptFinal(ctx, out, outl);
322 unsigned char *out, int *outl,
321 evp_EncryptDecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl) argument
398 EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl) argument
410 EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
417 EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
465 EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl) argument
538 EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
545 EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
[all...]
H A Devp_test.c143 int outl, outl2, mode; local
183 if (an && !EVP_EncryptUpdate(&ctx, NULL, &outl, aad, an)) {
209 if (!EVP_EncryptUpdate(&ctx, NULL, &outl, NULL, pn)) {
214 if (an && !EVP_EncryptUpdate(&ctx, NULL, &outl, aad, an)) {
232 if (!EVP_EncryptUpdate(&ctx, out, &outl, plaintext, pn)) {
237 if (!EVP_EncryptFinal_ex(&ctx, out + outl, &outl2)) {
243 if (outl + outl2 != cn) {
245 outl + outl2, cn);
298 if (an && !EVP_DecryptUpdate(&ctx, NULL, &outl, aad, an)) {
325 if (!EVP_DecryptUpdate(&ctx, NULL, &outl, NUL
[all...]
H A Dencode.c151 void EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, argument
157 *outl = 0;
189 *outl = 0;
195 *outl = total;
198 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) argument
208 *outl = ret;
271 int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, argument
370 *outl = ret;
414 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) argument
418 *outl
[all...]
H A Dp_open.c114 int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
118 i = EVP_DecryptFinal_ex(ctx, out, outl);
H A Dp_seal.c103 void EVP_SealUpdate(ctx,out,outl,in,inl)
106 int *outl;
110 EVP_EncryptUpdate(ctx,out,outl,in,inl);
114 int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
117 i = EVP_EncryptFinal_ex(ctx, out, outl);
H A Dbio_enc.c148 static int enc_read(BIO *b, char *out, int outl) argument
163 if (i > outl)
164 i = outl;
168 outl -= i;
177 * At this point, we have room of outl bytes and an empty buffer, so we
181 while (outl > 0) {
223 if (ctx->buf_len <= outl)
226 i = outl;
232 outl -= i;
H A Dbio_b64.c148 static int b64_read(BIO *b, char *out, int outl) argument
175 if (i > outl)
176 i = outl;
181 outl -= i;
190 * At this point, we have room of outl bytes and an empty buffer, so we
195 while (outl > 0) {
348 if (ctx->buf_len <= outl)
351 i = outl;
360 outl -= i;
H A Dbio_ok.c213 static int ok_read(BIO *b, char *out, int outl) argument
225 while (outl > 0) {
230 if (i > outl)
231 i = outl;
235 outl -= i;
257 if (outl == 0)
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Da_sign.c136 int i, inl = 0, outl = 0, outll = 0; local
175 outll = outl = EVP_PKEY_size(pkey);
176 buf_out = (unsigned char *)OPENSSL_malloc((unsigned int)outl);
178 outl = 0;
188 (unsigned int *)&outl, pkey)) {
189 outl = 0;
197 signature->length = outl;
214 return (outl);
239 size_t inl = 0, outl = 0, outll = 0; local
254 outl
[all...]
/freebsd-11-stable/sys/amd64/include/
H A Diodev.h39 #define iodev_write_4 outl
/freebsd-11-stable/sys/i386/include/
H A Diodev.h39 #define iodev_write_4 outl
/freebsd-11-stable/crypto/openssl/crypto/pem/
H A Dpem_seal.c121 void PEM_SealUpdate(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *out, int *outl, argument
127 *outl = 0;
138 *outl += j;
146 unsigned char *out, int *outl, EVP_PKEY *priv)
168 *outl = j;
171 *outl += j;
145 PEM_SealFinal(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *sig, int *sigl, unsigned char *out, int *outl, EVP_PKEY *priv) argument
/freebsd-11-stable/sys/dev/bvm/
H A Dbvm_dbg.c92 outl(bvm_dbg_port, c);
/freebsd-11-stable/crypto/openssl/crypto/bio/
H A Dbf_nbio.c127 static int nbiof_read(BIO *b, char *out, int outl) argument
146 if (outl > num)
147 outl = num;
155 ret = BIO_read(b->next_bio, out, outl);
H A Dbf_buff.c141 static int buffer_read(BIO *b, char *out, int outl) argument
159 if (i > outl)
160 i = outl;
165 if (outl == i)
167 outl -= i;
177 if (outl > ctx->ibuf_size) {
179 i = BIO_read(b->next_bio, out, outl);
188 if (outl == i)
191 outl -= i;
H A Dbss_rtcp.c191 static int rtcp_read(BIO *b, char *out, int outl) argument
201 if (length > outl)
202 length = outl;
231 if (length > outl)
232 length = outl;
H A Dbf_null.c114 static int nullf_read(BIO *b, char *out, int outl) argument
122 ret = BIO_read(b->next_bio, out, outl);
H A Dbss_null.c104 static int null_read(BIO *b, char *out, int outl) argument
H A Dbss_mem.c149 static int mem_read(BIO *b, char *out, int outl) argument
156 ret = (outl >= 0 && (size_t)outl > bm->length) ? (int)bm->length : outl;
H A Dbss_fd.c161 static int fd_read(BIO *b, char *out, int outl) argument
167 ret = UP_read(b->num, out, outl);
/freebsd-11-stable/contrib/apr-util/crypto/
H A Dapr_crypto_commoncrypto.c620 apr_size_t outl = *outlen; local
631 outl = CCCryptorGetOutputLength(ctx->ref, inlen, 1);
632 buffer = apr_palloc(ctx->pool, outl);
636 apr_crypto_clear(ctx->pool, buffer, outl);
641 outl, &outl))) {
652 *outlen = outl;
803 apr_size_t outl = *outlen; local
814 outl = CCCryptorGetOutputLength(ctx->ref, inlen, 1);
815 buffer = apr_palloc(ctx->pool, outl);
[all...]
/freebsd-11-stable/sys/i386/i386/
H A Dgeode.c113 outl(gpio, u);
135 outl(a, 1 << bit);
137 outl(a, 1 << (bit + 16));
285 outl(cba + 0x0d, 2);
/freebsd-11-stable/crypto/openssl/crypto/cms/
H A Dcms_pwri.c227 int outl, rv = 0; local
240 EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl,
247 EVP_DecryptUpdate(ctx, tmp, &outl, tmp + inlen - blocklen, blocklen);
249 EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen);
254 EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen);
/freebsd-11-stable/tools/tools/crypto/
H A Dcryptocheck.c444 int outl, total; local
455 if (EVP_CipherUpdate(ctx, (u_char *)output, &outl,
459 total = outl;
460 if (EVP_CipherFinal_ex(ctx, (u_char *)output + outl, &outl) != 1)
463 total += outl;
798 int outl, total; local
810 if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)aad,
816 if (EVP_EncryptUpdate(ctx, (u_char *)output, &outl,
820 total = outl;
894 int outl, total; local
[all...]
/freebsd-11-stable/sys/i386/pci/
H A Dpci_cfgreg.c299 outl(CONF1_ADDR_PORT, (1U << 31)
376 outl(port, data);
449 outl(CONF1_ADDR_PORT, CONF1_ENABLE_CHK);
452 outl(CONF1_ADDR_PORT, oldval1);
463 outl(CONF1_ADDR_PORT, CONF1_ENABLE_CHK1);
465 outl(CONF1_ADDR_PORT, oldval1);

Completed in 147 milliseconds

123