Home
last modified time | relevance | path

Searched refs:vtmp (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/crypto/openssl/crypto/x509v3/
H A Dv3_info.c68 CONF_VALUE *vtmp; variable
79 vtmp = sk_CONF_VALUE_value(tret, i);
81 nlen = strlen(objtmp) + 3 + strlen(vtmp->name) + 1;
85 BIO_snprintf(ntmp, nlen, "%s - %s", objtmp, vtmp->name);
86 OPENSSL_free(vtmp->name);
87 vtmp->name = ntmp;
H A Dv3_utl.c40 CONF_VALUE *vtmp = NULL; in X509V3_add_value() local
48 if ((vtmp = OPENSSL_malloc(sizeof(*vtmp))) == NULL) in X509V3_add_value()
52 vtmp->section = NULL; in X509V3_add_value()
53 vtmp->name = tname; in X509V3_add_value()
54 vtmp->value = tvalue; in X509V3_add_value()
64 OPENSSL_free(vtmp); in X509V3_add_value()
290 char *ntmp, *vtmp; in STACK_OF() local
335 vtmp = strip_spaces(q); in STACK_OF()
336 if (!vtmp) { in STACK_OF()
350 vtmp = strip_spaces(q); in STACK_OF()
[all …]
/freebsd-12.1/crypto/openssl/crypto/asn1/
H A Dasn1_gen.c581 CONF_VALUE vtmp; in asn1_str2type() local
608 vtmp.name = NULL; in asn1_str2type()
609 vtmp.section = NULL; in asn1_str2type()
610 vtmp.value = (char *)str; in asn1_str2type()
611 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) { in asn1_str2type()
H A Dtasn_fre.c135 ASN1_VALUE *vtmp = sk_ASN1_VALUE_value(sk, i); in asn1_template_free() local
137 asn1_item_embed_free(&vtmp, ASN1_ITEM_ptr(tt->item), embed); in asn1_template_free()
H A Dtasn_dec.c583 ASN1_VALUE *vtmp; in asn1_template_noexp_d2i() local
585 vtmp = sk_ASN1_VALUE_pop(sktmp); in asn1_template_noexp_d2i()
586 ASN1_item_ex_free(&vtmp, ASN1_ITEM_ptr(tt->item)); in asn1_template_noexp_d2i()
/freebsd-12.1/crypto/openssl/apps/
H A Dopt.c459 const X509_VERIFY_PARAM *vtmp; in opt_verify() local
499 vtmp = X509_VERIFY_PARAM_lookup(opt_arg()); in opt_verify()
500 if (vtmp == NULL) { in opt_verify()
505 X509_VERIFY_PARAM_set1(vpm, vtmp); in opt_verify()
H A Dapps.c1906 char *stmp, *vtmp = NULL; in pkey_ctrl_string() local
1910 vtmp = strchr(stmp, ':'); in pkey_ctrl_string()
1911 if (vtmp) { in pkey_ctrl_string()
1912 *vtmp = 0; in pkey_ctrl_string()
1913 vtmp++; in pkey_ctrl_string()
1915 rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp); in pkey_ctrl_string()
/freebsd-12.1/usr.sbin/kldxref/
H A Def_obj.c364 void *vtmp; in ef_obj_open() local
407 if (ef_obj_read_entry(ef, hdr->e_shoff, nbytes, &vtmp) != 0) { in ef_obj_open()
411 ef->e_shdr = shdr = vtmp; in ef_obj_open()
/freebsd-12.1/stand/libsa/zfs/
H A Dzfsimpl.c1523 vdev_t vtmp; in vdev_probe() local
1547 memset(&vtmp, 0, sizeof(vtmp)); in vdev_probe()
1548 vtmp.v_phys_read = _read; in vdev_probe()
1549 vtmp.v_read_priv = read_priv; in vdev_probe()
1571 if (vdev_read_phys(&vtmp, &bp, tmp_label, off, 0)) in vdev_probe()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonRegisterInfo.td188 def VTMP : Ri<0, "vtmp">, DwarfRegNum<[131]>;
H A DHexagonDepInstrInfo.td31972 "vtmp.h = vgather($Rt32,$Mu2,$Vv32.h).h",
31988 "if ($Qs4) vtmp.h = vgather($Rt32,$Mu2,$Vv32.h).h",
32004 "vtmp.h = vgather($Rt32,$Mu2,$Vvv32.w).h",
32020 "if ($Qs4) vtmp.h = vgather($Rt32,$Mu2,$Vvv32.w).h",
32036 "vtmp.w = vgather($Rt32,$Mu2,$Vv32.w).w",
32052 "if ($Qs4) vtmp.w = vgather($Rt32,$Mu2,$Vv32.w).w",
/freebsd-12.1/contrib/libucl/src/
H A Ducl_util.c479 struct ucl_variable *var, *vtmp; local
508 LL_FOREACH_SAFE (parser->variables, var, vtmp) {