Searched defs:out (Results 326 - 350 of 2458) sorted by relevance

<<11121314151617181920>>

/external/openssl/crypto/asn1/
H A Da_time.c138 ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZEDTIME **out) argument
146 if (!out || !*out)
150 if (out) *out = ret;
152 else ret = *out;
168 /* Work out the century and prepend */
H A Dt_bitst.c64 int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, argument
69 BIO_printf(out, "%*s", indent, "");
72 if(!first) BIO_puts(out, ", ");
73 BIO_puts(out, bnam->lname);
77 BIO_puts(out, "\n");
H A Dt_crl.c85 int X509_CRL_print(BIO *out, X509_CRL *x) argument
93 BIO_printf(out, "Certificate Revocation List (CRL):\n");
95 BIO_printf(out, "%8sVersion %lu (0x%lx)\n", "", l+1, l);
97 X509_signature_print(out, x->sig_alg, NULL);
99 BIO_printf(out,"%8sIssuer: %s\n","",p);
101 BIO_printf(out,"%8sLast Update: ","");
102 ASN1_TIME_print(out,X509_CRL_get_lastUpdate(x));
103 BIO_printf(out,"\n%8sNext Update: ","");
105 ASN1_TIME_print(out,X509_CRL_get_nextUpdate(x));
106 else BIO_printf(out,"NON
[all...]
/external/openssl/crypto/comp/
H A Dcomp_lib.c37 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, argument
46 ret=ctx->meth->compress(ctx,out,olen,in,ilen);
55 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen, argument
65 ret=ctx->meth->expand(ctx,out,olen,in,ilen);
/external/openssl/crypto/des/
H A Dcbc_cksm.c35 * The word 'cryptographic' can be left out if the rouines from the library
68 unsigned char *out = &(*output)[0]; local
90 if (out != NULL)
92 l2c(tout0,out);
93 l2c(tout1,out);
H A Dcfb64enc.c35 * The word 'cryptographic' can be left out if the rouines from the library
66 void DES_cfb64_encrypt(const unsigned char *in, unsigned char *out, argument
92 *(out++)=c;
114 *(out++)=c^cc;
H A Decb3_enc.c35 * The word 'cryptographic' can be left out if the rouines from the library
69 unsigned char *out = &(*output)[0]; local
81 l2c(l0,out);
82 l2c(l1,out);
H A Dncbc_enc.c40 * The word 'cryptographic' can be left out if the rouines from the library
67 void DES_cbc_encrypt(const unsigned char *in, unsigned char *out, long length, argument
70 void DES_ncbc_encrypt(const unsigned char *in, unsigned char *out, long length,
93 tout0=tin[0]; l2c(tout0,out);
94 tout1=tin[1]; l2c(tout1,out);
102 tout0=tin[0]; l2c(tout0,out);
103 tout1=tin[1]; l2c(tout1,out);
122 l2c(tout0,out);
123 l2c(tout1,out);
134 l2cn(tout0,tout1,out,
[all...]
/external/openssl/crypto/evp/
H A De_idea.c35 * The word 'cryptographic' can be left out if the rouines from the library
75 static int idea_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, argument
79 idea_ecb_encrypt(in + i, out + i, ctx->cipher_data);
H A De_null.c35 * The word 'cryptographic' can be left out if the rouines from the library
68 static int null_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
97 static int null_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, argument
100 if (in != out)
101 memcpy((char *)out,(const char *)in,inl);
H A Dp_open.c35 * The word 'cryptographic' can be left out if the rouines from the library
113 int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
117 i=EVP_DecryptFinal_ex(ctx,out,outl);
H A Dp_seal.c35 * The word 'cryptographic' can be left out if the rouines from the library
98 void EVP_SealUpdate(ctx,out,outl,in,inl)
100 unsigned char *out;
105 EVP_EncryptUpdate(ctx,out,outl,in,inl);
109 int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
112 i = EVP_EncryptFinal_ex(ctx,out,outl);
/external/openssl/crypto/lhash/
H A Dlh_stats.c35 * The word 'cryptographic' can be left out if the rouines from the library
73 void lh_stats(LHASH *lh, FILE *out) argument
75 fprintf(out,"num_items = %lu\n",lh->num_items);
76 fprintf(out,"num_nodes = %u\n",lh->num_nodes);
77 fprintf(out,"num_alloc_nodes = %u\n",lh->num_alloc_nodes);
78 fprintf(out,"num_expands = %lu\n",lh->num_expands);
79 fprintf(out,"num_expand_reallocs = %lu\n",lh->num_expand_reallocs);
80 fprintf(out,"num_contracts = %lu\n",lh->num_contracts);
81 fprintf(out,"num_contract_reallocs = %lu\n",lh->num_contract_reallocs);
82 fprintf(out,"num_hash_call
99 lh_node_stats(LHASH *lh, FILE *out) argument
112 lh_node_usage_stats(LHASH *lh, FILE *out) argument
180 lh_stats_bio(const _LHASH *lh, BIO *out) argument
208 lh_node_stats_bio(const _LHASH *lh, BIO *out) argument
221 lh_node_usage_stats_bio(const _LHASH *lh, BIO *out) argument
[all...]
/external/openssl/crypto/modes/
H A Dofb128.c66 void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out, argument
74 assert(in && out && key && ivec && num);
81 *(out++) = *(in++) ^ ivec[n];
86 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0)
92 *(size_t*)(out+n) =
95 out += 16;
102 out[n] = in[n] ^ ivec[n];
115 out[l] = in[l] ^ ivec[n];
/external/openssl/crypto/pkcs7/
H A Dpk7_mime.c64 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) argument
66 return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags,
70 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) argument
72 return PEM_write_bio_ASN1_stream(out, (ASN1_VALUE *) p7, in, flags,
/external/openssl/crypto/rc4/
H A Drc4.c35 * The word 'cryptographic' can be left out if the rouines from the library
69 " -out arg - output file - default stdout\n",
76 FILE *in=NULL,*out=NULL; local
93 else if (strcmp(*argv,"-out") == 0)
134 out=stdout;
137 out=fopen(outfile,"w");
138 if (out == NULL)
150 setmode(fileno(out),O_BINARY);
181 i=fwrite(buf,(unsigned int)i,1,out);
188 fclose(out);
[all...]
/external/oprofile/libutil++/
H A Dxml_output.cpp24 ostringstream out; local
25 out << xml_tag_name(tag);
26 return out.str();
32 ostringstream out; local
36 out << buf;
37 return out.str();
43 ostringstream out; local
47 out << buf;
48 return out.str();
54 ostringstream out; local
65 ostringstream out; local
76 ostringstream out; local
[all...]
/external/owasp/sanitizer/
H A DMakefile11 @echo " The output will be available under out/."
13 @echo " classes - Put Java .class files under out/."
25 @echo " directories of trunk checked out."
54 out:
55 mkdir -p out
57 out/classes: out
58 mkdir -p out/classes
60 out/genfiles: out
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DPolicyFactory.java69 /** Produces a sanitizer that emits tokens to {@code out}. */
70 public HtmlSanitizer.Policy apply(@Nonnull HtmlStreamEventReceiver out) { argument
72 out, policies, textContainers);
76 * Produces a sanitizer that emits tokens to {@code out} and that notifies
78 * @param out a renderer that receives approved tokens only.
87 HtmlStreamEventReceiver out, @Nullable HtmlChangeListener<CTX> listener,
90 return apply(out);
93 out, listener, context);
120 StringBuilder out = new StringBuilder(html.length());
123 apply(HtmlStreamRenderer.create(out, Handle
86 apply( HtmlStreamEventReceiver out, @Nullable HtmlChangeListener<CTX> listener, @Nullable CTX context) argument
[all...]
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DHtmlLexerTest.java124 private static void lex(String input, Appendable out) throws Exception { argument
139 out.append(type);
140 while (--nPadding >= 0) { out.append(' '); }
141 out.append(" [").append(escaped).append("] : ")
H A DVerboseTestRunner.java43 final PrintStream out; field in class:VerboseTestRunner
46 out = System.out;
47 setPrinter(new VerboseResultPrinter(out));
52 VerboseResultPrinter(PrintStream out) { argument
53 super(out);
58 out.println("Started " + test);
59 out.flush();
66 out.println("ended " + test);
67 out
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmshalf.c510 } out; local
514 out.num = Mantissa[ (h & 0x3ff) + Offset[ n ] ] + Exponent[ n ];
515 return out.flt;
/external/protobuf/java/src/device/main/java/com/google/protobuf/nano/android/
H A DParcelableExtendableMessageNano.java66 public void writeToParcel(Parcel out, int flags) { argument
67 ParcelingUtil.writeToParcel(getClass(), this, out);
H A DParcelableMessageNano.java64 public void writeToParcel(Parcel out, int flags) { argument
65 ParcelingUtil.writeToParcel(getClass(), this, out);
H A DParcelingUtil.java68 Parcel out) {
69 out.writeString(clazz.getName());
70 out.writeByteArray(MessageNano.toByteArray(message));
67 writeToParcel(Class<T> clazz, MessageNano message, Parcel out) argument

Completed in 286 milliseconds

<<11121314151617181920>>