• Home
  • Raw
  • Download

Lines Matching refs:_

9 	{ printf "extern int %s_main(int argc,char *argv[]);\n",$_; }
32 push(@files,$_);
33 $str="\t{FUNC_TYPE_GENERAL,\"$_\",${_}_main},\n";
34 if (($_ =~ /^s_/) || ($_ =~ /^ciphers$/))
36 elsif ( ($_ =~ /^speed$/))
38 elsif ( ($_ =~ /^engine$/))
40 elsif ( ($_ =~ /^rsa$/) || ($_ =~ /^genrsa$/) || ($_ =~ /^rsautl$/))
42 elsif ( ($_ =~ /^dsa$/) || ($_ =~ /^gendsa$/) || ($_ =~ /^dsaparam$/))
44 elsif ( ($_ =~ /^ec$/) || ($_ =~ /^ecparam$/))
46 elsif ( ($_ =~ /^dh$/) || ($_ =~ /^gendh$/) || ($_ =~ /^dhparam$/))
48 elsif ( ($_ =~ /^pkcs12$/))
50 elsif ( ($_ =~ /^cms$/))
52 elsif ( ($_ =~ /^ocsp$/))
54 elsif ( ($_ =~ /^srp$/))
62 push(@files,$_);
63 printf "#ifndef OPENSSL_NO_".uc($_)."\n\t{FUNC_TYPE_MD,\"".$_."\",dgst_main},\n#endif\n";
87 push(@files,$_);
89 $t=sprintf("\t{FUNC_TYPE_CIPHER,\"%s\",enc_main},\n",$_);
90 if ($_ =~ /des/) { $t="#ifndef OPENSSL_NO_DES\n${t}#endif\n"; }
91 elsif ($_ =~ /aes/) { $t="#ifndef OPENSSL_NO_AES\n${t}#endif\n"; }
92 elsif ($_ =~ /camellia/) { $t="#ifndef OPENSSL_NO_CAMELLIA\n${t}#endif\n"; }
93 elsif ($_ =~ /idea/) { $t="#ifndef OPENSSL_NO_IDEA\n${t}#endif\n"; }
94 elsif ($_ =~ /seed/) { $t="#ifndef OPENSSL_NO_SEED\n${t}#endif\n"; }
95 elsif ($_ =~ /rc4/) { $t="#ifndef OPENSSL_NO_RC4\n${t}#endif\n"; }
96 elsif ($_ =~ /rc2/) { $t="#ifndef OPENSSL_NO_RC2\n${t}#endif\n"; }
97 elsif ($_ =~ /bf/) { $t="#ifndef OPENSSL_NO_BF\n${t}#endif\n"; }
98 elsif ($_ =~ /cast/) { $t="#ifndef OPENSSL_NO_CAST\n${t}#endif\n"; }
99 elsif ($_ =~ /rc5/) { $t="#ifndef OPENSSL_NO_RC5\n${t}#endif\n"; }
100 elsif ($_ =~ /zlib/) { $t="#ifdef ZLIB\n${t}#endif\n"; }