Lines Matching defs:in
11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
65 static int asn1_d2i_read_bio(BIO *in, BUF_MEM **pb);
70 void *ASN1_d2i_fp(void *(*xnew)(void), d2i_of_void *d2i, FILE *in, void **x)
80 BIO_set_fp(b,in,BIO_NOCLOSE);
87 void *ASN1_d2i_bio(void *(*xnew)(void), d2i_of_void *d2i, BIO *in, void **x)
94 len = asn1_d2i_read_bio(in, &b);
106 void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x)
113 len = asn1_d2i_read_bio(in, &b);
124 void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x)
134 BIO_set_fp(b,in,BIO_NOCLOSE);
142 static int asn1_d2i_read_bio(BIO *in, BUF_MEM **pb)
172 i=BIO_read(in,&(b->data[len]),want);
229 /* suck in c.slen bytes of data */
247 i=BIO_read(in,&(b->data[len]),want);