Lines Matching defs:out
35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
73 int set_hex(char *in,unsigned char *out,int size);
125 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL;
175 else if (strcmp(*argv,"-out") == 0)
300 BIO_printf(bio_err,"%-14s output file\n","-out <file>");
389 out=BIO_new(BIO_s_file());
390 if ((in == NULL) || (out == NULL))
398 BIO_set_callback(out,BIO_debug_callback);
400 BIO_set_callback_arg(out,(char *)bio_err);
460 BIO_set_fp(out,stdout,BIO_NOCLOSE);
468 out = BIO_push(tmpbio, out);
474 if (BIO_write_filename(out,outf) <= 0)
482 wbio=out;
686 BIO_printf(bio_err,"bytes written:%8ld\n",BIO_number_written(out));
693 if (out != NULL) BIO_free_all(out);
704 int set_hex(char *in, unsigned char *out, int size)
715 memset(out,0,size);
733 out[i/2]|=j;
735 out[i/2]=(j<<4);