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
114 BIO *out=NULL;
138 out=BIO_new(BIO_s_file());
140 if (out == NULL) EXIT(1);
141 BIO_set_fp(out,stdout,BIO_NOCLOSE);
164 ERR_print_errors(out);
172 ERR_print_errors(out);
180 ERR_print_errors(out);
188 ERR_print_errors(out);
208 printf("a (%3d) = ",BN_num_bits(a)); BN_print(out,a);
209 printf("\nb (%3d) = ",BN_num_bits(b)); BN_print(out,b);
210 printf("\nm (%3d) = ",BN_num_bits(m)); BN_print(out,m);
211 printf("\nsimple ="); BN_print(out,r_simple);
212 printf("\nrecp ="); BN_print(out,r_recp);
213 printf("\nmont ="); BN_print(out,r_mont);
214 printf("\nmont_ct ="); BN_print(out,r_mont_const);
228 CRYPTO_mem_leaks(out);
229 BIO_free(out);
240 ERR_print_errors(out);