Searched refs:outl (Results 1 - 22 of 22) 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/lldb/test/pexpect-2.4/examples/
H A Dssh_session.py34 outl = 'class :'+self.__class__.__name__
37 outl += '\n\t'+attr+' : '+'*'*len(self.password)
39 outl += '\n\t'+attr+' : '+str(getattr(self, attr))
40 return outl
/external/boringssl/src/ssl/test/
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;
H A Dasync_bio.cc72 static int AsyncRead(BIO *bio, char *out, int outl) { argument
86 if (!a->datagram && (size_t)outl > a->read_quota) {
87 outl = a->read_quota;
89 int ret = BIO_read(bio->next_bio, out, outl);
/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/bio/
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 Dsocket.c105 static int sock_read(BIO *b, char *out, int outl) { argument
113 ret = recv(b->num, out, outl, 0);
H A Dfd.c153 static int fd_read(BIO *b, char *out, int outl) { argument
156 ret = read(b->num, out, outl);
H A Dbio_mem.c135 static int mem_read(BIO *bio, char *out, int outl) { argument
140 ret = outl;
H A Dfile.c184 static int file_read(BIO *b, char *out, int outl) { argument
191 ret = fread(out, 1, outl, (FILE *)b->ptr);
/external/boringssl/src/crypto/pem/
H A Dpem_lib.c552 int nlen,n,i,j,outl; local
584 EVP_EncodeUpdate(&ctx,buf,&outl,&(data[j]),n);
585 if ((outl) && (BIO_write(bp,(char *)buf,outl) != outl))
587 i+=outl;
591 EVP_EncodeFinal(&ctx,buf,&outl);
592 if ((outl > 0) && (BIO_write(bp,(char *)buf,outl) != outl)) got
[all...]
/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/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_openssl.c130 int outl;
145 if (!EVP_CipherUpdate(&ctx, skip_buf, &outl, skip_buf, len))
150 if (EVP_CipherUpdate(&ctx, data, &outl, data, data_len))
504 int outl; local
505 if (!EVP_EncryptUpdate(&ctx->enc, crypt, &outl, plain, len))
514 int outl; local
515 outl = len;
516 if (!EVP_DecryptUpdate(&ctx->dec, plain, &outl, crypt, len))
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_openssl.c130 int outl;
145 if (!EVP_CipherUpdate(&ctx, skip_buf, &outl, skip_buf, len))
150 if (EVP_CipherUpdate(&ctx, data, &outl, data, data_len))
504 int outl; local
505 if (!EVP_EncryptUpdate(&ctx->enc, crypt, &outl, plain, len))
514 int outl; local
515 outl = len;
516 if (!EVP_DecryptUpdate(&ctx->dec, plain, &outl, crypt, len))
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_openssl.c130 int outl;
145 if (!EVP_CipherUpdate(&ctx, skip_buf, &outl, skip_buf, len))
150 if (EVP_CipherUpdate(&ctx, data, &outl, data, data_len))
504 int outl; local
505 if (!EVP_EncryptUpdate(&ctx->enc, crypt, &outl, plain, len))
514 int outl; local
515 outl = len;
516 if (!EVP_DecryptUpdate(&ctx->dec, plain, &outl, crypt, len))
/external/boringssl/include/openssl/
H A Dpem.h406 OPENSSL_EXPORT void PEM_SealUpdate(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *out, int *outl, unsigned char *in, int inl);
407 OPENSSL_EXPORT int PEM_SealFinal(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *sig,int *sigl, unsigned char *out, int *outl, EVP_PKEY *priv);
/external/boringssl/src/include/openssl/
H A Dpem.h406 OPENSSL_EXPORT void PEM_SealUpdate(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *out, int *outl, unsigned char *in, int inl);
407 OPENSSL_EXPORT int PEM_SealFinal(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *sig,int *sigl, unsigned char *out, int *outl, EVP_PKEY *priv);
/external/openssh/
H A Dpacket.c741 size_t inl, outl; local
746 (r = sshbuf_get_string_direct(b, &outblob, &outl)) != 0)
757 if (outl == 0)
759 else if (outl != sizeof(state->compression_out_stream)) {
764 memcpy(&state->compression_out_stream, outblob, outl);
/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/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp4884 int outl; local
4885 if (!EVP_CipherUpdate(ctx, out + outOffset, &outl, in + inOffset, inLength)) {
4892 inOffset, outl);
4893 return outl;
4913 int outl; local
4914 if (!EVP_CipherFinal_ex(ctx, out + outOffset, &outl)) {
4924 JNI_TRACE("EVP_CipherFinal(%p, %p, %d) => %d", ctx, outArray, outOffset, outl);
4925 return outl;
/external/mesa3d/src/mesa/x86/
H A Dassyntax.h555 #define OUT_L CHOICE(outl (DX), outl ARG2(EAX,DX), _LTOG out DX)
561 #define OUT1_L(a) CHOICE(outl (a), outl ARG2(EAX,a), _LTOG out a)

Completed in 2409 milliseconds