Searched refs:intname (Results 1 – 6 of 6) sorted by relevance
/freebsd/crypto/openssl/crypto/x509/ |
H A D | x_name.c | 39 static int i2d_name_canon(const STACK_OF(STACK_OF_X509_NAME_ENTRY) * intname, 147 } intname = { in x509_name_ex_d2i() local 165 ret = ASN1_item_ex_d2i(&intname.a, in x509_name_ex_d2i() 182 for (i = 0; i < sk_STACK_OF_X509_NAME_ENTRY_num(intname.s); i++) { in x509_name_ex_d2i() 183 entries = sk_STACK_OF_X509_NAME_ENTRY_value(intname.s, i); in x509_name_ex_d2i() 195 sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname.s, in x509_name_ex_d2i() 205 sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname.s, in x509_name_ex_d2i() 238 } intname = { in x509_name_encode() local 247 intname.s = sk_STACK_OF_X509_NAME_ENTRY_new_null(); in x509_name_encode() 248 if (!intname.s) in x509_name_encode() [all …]
|
/freebsd/sys/tools/ |
H A D | makeobjops.awk | 135 intname = $2; 136 sub(/;$/, "", intname); 137 if (intname !~ /^[a-z_][a-z0-9_]*$/) { 139 warnsrc("Invalid interface name '" intname "', use [a-z_][a-z0-9_]*"); 146 debug("Interface " intname); 148 printh("#ifndef _" intname "_if_h_"); 149 printh("#define _" intname "_if_h_\n"); 150 printc("#include \"" intname "_if.h\"\n"); 199 if (!intname) { 289 mname = intname "_" name; # method name [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZFeatures.td | 13 class SystemZFeature<string extname, string intname, dag featdag, string desc> 14 : Predicate<"Subtarget->has"#intname#"()">, 16 SubtargetFeature<extname, "Has"#intname, "true", desc>; 18 class SystemZMissingFeature<string intname> 19 : Predicate<"!Subtarget->has"#intname#"()">;
|
/freebsd/crypto/libecc/scripts/ |
H A D | expand_libecc.py | 1428 def export_curve_int(curvename, intname, bigint, size): argument 1430 out = "static const u8 "+curvename+"_"+intname+"[] = {\n\t0x00,\n};\n" 1431 out += "TO_EC_STR_PARAM_FIXED_SIZE("+curvename+"_"+intname+", 0);\n\n" 1433 out = "static const u8 "+curvename+"_"+intname+"[] = "+bigint_to_C_array(bigint, size)+"\n" 1434 out += "TO_EC_STR_PARAM("+curvename+"_"+intname+");\n\n"
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | arm_mve.td | 807 multiclass vctp<Type pred, string intname> { 809 (u16 (IRInt<"pred_v2i", [pred]> (IRIntBase<intname> $val)))>; 812 (IRIntBase<intname> $val))))>; 1154 multiclass DyadicImmShift<Type outtype, Immediate imm, string intname = NAME, 1160 !con((IRInt<intname, intparams> $a, $b, $sh), extraargs)>; 1164 !con((IRInt<intname # "_predicated", intparams # [Predicate]>
|
H A D | arm_mve_defs.td | 162 string intname = name_; // base name of the intrinsic
|