Lines Matching defs:out
37 static int set_hex(const char *in, unsigned char *out, int size);
76 {"out", OPT_OUT, '>', "Output file"},
118 BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio =
388 out = bio_open_default(outfile, 'w', outformat);
389 if (out == NULL)
394 BIO_set_callback_ex(out, BIO_debug_callback_ex);
396 BIO_set_callback_arg(out, (char *)bio_err);
400 wbio = out;
634 BIO_printf(bio_err, "bytes written: %8ju\n", BIO_number_written(out));
641 BIO_free_all(out);
662 /* Filter out ciphers that we cannot use */
677 static int set_hex(const char *in, unsigned char *out, int size)
691 memset(out, 0, size);
700 out[i / 2] |= j;
702 out[i / 2] = (j << 4);