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

123

/freebsd-10.1-release/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-10.1-release/crypto/openssl/crypto/evp/
H A Devp_enc.c254 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, argument
258 return EVP_EncryptUpdate(ctx, out, outl, in, inl);
260 return EVP_DecryptUpdate(ctx, out, outl, in, inl);
263 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
266 return EVP_EncryptFinal_ex(ctx, out, outl);
268 return EVP_DecryptFinal_ex(ctx, out, outl);
271 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
274 return EVP_EncryptFinal(ctx, out, outl);
276 return EVP_DecryptFinal(ctx, out, outl);
305 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, argument
368 EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
375 EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
417 EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl) argument
471 EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
478 EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
[all...]
H A Dencode.c134 void EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, argument
140 *outl = 0;
172 *outl = 0;
178 *outl = total;
181 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) argument
191 *outl = ret;
238 int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, argument
366 *outl = ret;
412 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) argument
416 *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 Devp_test.c139 int outl, outl2; local
165 if (!EVP_EncryptUpdate(&ctx, out, &outl, plaintext, pn)) {
170 if (!EVP_EncryptFinal_ex(&ctx, out + outl, &outl2)) {
176 if (outl + outl2 != cn) {
178 outl + outl2, cn);
198 if (!EVP_DecryptUpdate(&ctx, out, &outl, ciphertext, cn)) {
203 if (!EVP_DecryptFinal_ex(&ctx, out + outl, &outl2)) {
209 if (outl + outl2 != pn) {
211 outl + outl2, pn);
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) {
218 if (ctx->buf_len <= outl)
221 i = outl;
227 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) {
340 if (ctx->buf_len <= outl)
343 i = outl;
352 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-10.1-release/sys/amd64/include/
H A Diodev.h39 #define iodev_write_4 outl
/freebsd-10.1-release/sys/i386/include/
H A Diodev.h39 #define iodev_write_4 outl
/freebsd-10.1-release/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-10.1-release/sys/arm/include/
H A Dkatelib.h98 #define outl(port, lword) WriteWord((port), (lword)) macro
/freebsd-10.1-release/sys/dev/bvm/
H A Dbvm_dbg.c92 outl(bvm_dbg_port, c);
/freebsd-10.1-release/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.c189 static int rtcp_read(BIO *b, char *out, int outl) argument
199 if (length > outl)
200 length = outl;
229 if (length > outl)
230 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_mem.c147 static int mem_read(BIO *b, char *out, int outl) argument
154 ret = (outl >= 0 && (size_t)outl > bm->length) ? (int)bm->length : outl;
H A Dbss_null.c104 static int null_read(BIO *b, char *out, int outl) argument
/freebsd-10.1-release/contrib/apr-util/crypto/
H A Dapr_crypto_nss.c621 int outl = (int) *outlen; local
636 s = PK11_CipherOp(block->ctx, *out, &outl, inlen, (unsigned char*) in,
646 *outlen = outl;
675 unsigned int outl = *outlen; local
677 SECStatus s = PK11_DigestFinal(block->ctx, out, &outl, block->blockSize);
678 *outlen = outl;
785 int outl = (int) *outlen; local
800 s = PK11_CipherOp(block->ctx, *out, &outl, inlen, (unsigned char*) in,
810 *outlen = outl;
839 unsigned int outl local
[all...]
H A Dapr_crypto_openssl.c565 int outl = *outlen; local
585 if (!EVP_EncryptUpdate(&ctx->cipherCtx, (*out), &outl, in, inlen)) {
587 if (!EVP_EncryptUpdate(&ctx->cipherCtx, (*out), &outl,
592 *outlen = outl;
720 int outl = *outlen; local
740 if (!EVP_DecryptUpdate(&ctx->cipherCtx, *out, &outl, in, inlen)) {
742 if (!EVP_DecryptUpdate(&ctx->cipherCtx, *out, &outl, (unsigned char *) in,
747 *outlen = outl;
/freebsd-10.1-release/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-10.1-release/crypto/openssl/crypto/cms/
H A Dcms_pwri.c224 int outl, rv = 0; local
237 EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl,
244 EVP_DecryptUpdate(ctx, tmp, &outl, tmp + inlen - blocklen, blocklen);
246 EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen);
251 EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen);
/freebsd-10.1-release/sys/i386/pci/
H A Dpci_cfgreg.c309 outl(CONF1_ADDR_PORT, (1U << 31)
386 outl(port, data);
460 outl(CONF1_ADDR_PORT, CONF1_ENABLE_CHK);
463 outl(CONF1_ADDR_PORT, oldval1);
474 outl(CONF1_ADDR_PORT, CONF1_ENABLE_CHK1);
476 outl(CONF1_ADDR_PORT, oldval1);

Completed in 219 milliseconds

123