Searched defs:outl (Results 1 - 21 of 21) sorted by relevance

/external/boringssl/src/crypto/x509/
H A Da_sign.c89 size_t inl=0,outl=0,outll=0; local
104 outll=outl=EVP_PKEY_size(pkey);
105 buf_out=OPENSSL_malloc((unsigned int)outl);
108 outl=0;
114 || !EVP_DigestSignFinal(ctx, buf_out, &outl))
116 outl=0;
123 signature->length=outl;
135 return(outl);
/external/boringssl/src/crypto/bio/
H A Dsocket.c105 static int sock_read(BIO *b, char *out, int outl) { argument
113 ret = recv(b->num, out, outl, 0);
H A Dbio_mem.c135 static int mem_read(BIO *bio, char *out, int outl) { argument
140 ret = outl;
H A Dfd.c153 static int fd_read(BIO *b, char *out, int outl) { argument
156 ret = read(b->num, out, outl);
H A Dbuffer.c141 static int buffer_read(BIO *bio, char *out, int outl) { argument
158 if (i > outl) {
159 i = outl;
165 if (outl == i) {
168 outl -= i;
176 if (outl > ctx->ibuf_size) {
178 i = BIO_read(bio->next_bio, out, outl);
187 if (outl == i) {
191 outl -= i;
H A Dfile.c184 static int file_read(BIO *b, char *out, int outl) { argument
189 size_t ret = fread(out, 1, outl, (FILE *)b->ptr);
196 /* fread reads at most |outl| bytes, so |ret| fits in an int. */
/external/boringssl/src/ssl/test/
H A Dasync_bio.cc71 static int AsyncRead(BIO *bio, char *out, int outl) { argument
85 if (!a->datagram && (size_t)outl > a->read_quota) {
86 outl = a->read_quota;
88 int ret = BIO_read(bio->next_bio, out, outl);
H A Dpacketed_bio.cc81 static int PacketedRead(BIO *bio, char *out, int outl) { argument
157 if (outl > (int)len) {
158 outl = len;
160 memcpy(out, buf, outl);
162 return outl;
/external/opencv3/modules/calib3d/test/
H A Dtest_affine3d_estimator.cpp154 vector<uchar> outl; local
155 int res = estimateAffine3D(fpts, tpts, aff_est, outl);
172 bool outl_good = count(outl.begin(), outl.end(), 1) == m &&
173 m == accumulate(outl.begin(), outl.begin() + m, 0);
/external/boringssl/src/crypto/base64/
H A Dbase64.c412 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, uint8_t *out, int *outl) { argument
415 *outl = 0;
423 *outl = i;
/external/boringssl/src/decrepit/bio/
H A Dbase64_bio.c118 static int b64_read(BIO *b, char *out, int outl) { argument
146 if (i > outl) {
147 i = outl;
153 outl -= i;
161 /* At this point, we have room of outl bytes and an empty buffer, so we
165 while (outl > 0) {
297 if (ctx->buf_len <= outl) {
300 i = outl;
310 outl -= i;
/external/llvm/test/MC/X86/
H A Dintel-syntax.s437 // CHECK: outl %eax, %dx
443 outl DX define
H A Dx86-64.s260 // CHECK: outl %eax, %dx
261 // CHECK: outl %eax, %dx
268 outl %eax, (%dx) label
/external/lz4/programs/
H A Dlz4cli.c461 size_t outl; local
466 outl = inl;
468 while ((outl >= inl-4) && (input_filename[outl] == extension[outl-inl+4])) output_filename[outl--]=0;
469 if (outl != inl-5) { DISPLAYLEVEL(1, "Cannot determine an output filename\n"); badusage(); }
/external/boringssl/src/crypto/pem/
H A Dpem_lib.c555 int nlen,n,i,j,outl; local
587 EVP_EncodeUpdate(&ctx,buf,&outl,&(data[j]),n);
588 if ((outl) && (BIO_write(bp,(char *)buf,outl) != outl))
590 i+=outl;
594 EVP_EncodeFinal(&ctx,buf,&outl);
595 if ((outl > 0) && (BIO_write(bp,(char *)buf,outl) != outl)) got
[all...]
/external/webrtc/webrtc/base/
H A Dopenssladapter.cc121 static int socket_read(BIO* b, char* out, int outl) { argument
126 int result = socket->Recv(out, outl);
H A Dopensslstreamadapter.cc233 static int stream_read(BIO* b, char* out, int outl) { argument
240 StreamResult result = stream->Read(out, outl, &read, &error);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_openssl.c181 int outl;
197 if (!EVP_CipherUpdate(ctx, skip_buf, &outl, skip_buf, len))
202 if (EVP_CipherUpdate(ctx, data, &outl, data, data_len))
577 int outl; local
578 if (!EVP_EncryptUpdate(ctx->enc, crypt, &outl, plain, len))
587 int outl; local
588 outl = len;
589 if (!EVP_DecryptUpdate(ctx->dec, plain, &outl, crypt, len))
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_openssl.c181 int outl;
197 if (!EVP_CipherUpdate(ctx, skip_buf, &outl, skip_buf, len))
202 if (EVP_CipherUpdate(ctx, data, &outl, data, data_len))
577 int outl; local
578 if (!EVP_EncryptUpdate(ctx->enc, crypt, &outl, plain, len))
587 int outl; local
588 outl = len;
589 if (!EVP_DecryptUpdate(ctx->dec, plain, &outl, crypt, len))
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_openssl.c181 int outl;
197 if (!EVP_CipherUpdate(ctx, skip_buf, &outl, skip_buf, len))
202 if (EVP_CipherUpdate(ctx, data, &outl, data, data_len))
577 int outl; local
578 if (!EVP_EncryptUpdate(ctx->enc, crypt, &outl, plain, len))
587 int outl; local
588 outl = len;
589 if (!EVP_DecryptUpdate(ctx->dec, plain, &outl, crypt, len))
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp4736 int outl; local
4737 if (!EVP_CipherUpdate(ctx, out + outOffset, &outl, in + inOffset, inLength)) {
4744 inOffset, outl);
4745 return outl;
4765 int outl; local
4766 if (!EVP_CipherFinal_ex(ctx, out + outOffset, &outl)) {
4776 JNI_TRACE("EVP_CipherFinal(%p, %p, %d) => %d", ctx, outArray, outOffset, outl);
4777 return outl;

Completed in 670 milliseconds