/freebsd/crypto/openssl/apps/lib/ |
H A D | app_x509.c | 90 char *stmp, *vtmp = NULL; in do_x509_ctrl_string() local 97 vtmp = strchr(stmp, ':'); in do_x509_ctrl_string() 98 if (vtmp != NULL) { in do_x509_ctrl_string() 99 *vtmp = 0; in do_x509_ctrl_string() 100 vtmp++; in do_x509_ctrl_string() 101 vtmp_len = strlen(vtmp); in do_x509_ctrl_string() 109 if (vtmp != NULL) { in do_x509_ctrl_string() 113 hexid = OPENSSL_hexstr2buf((const char *)vtmp, &hexid_len); in do_x509_ctrl_string() 115 stmp = vtmp = hexid; in do_x509_ctrl_string() 123 rv = ctrl(object, cmd, vtmp, vtmp_len); in do_x509_ctrl_string()
|
H A D | opt.c | 683 const X509_VERIFY_PARAM *vtmp; in opt_verify() local 727 vtmp = X509_VERIFY_PARAM_lookup(opt_arg()); in opt_verify() 728 if (vtmp == NULL) { in opt_verify() 733 X509_VERIFY_PARAM_set1(vpm, vtmp); in opt_verify()
|
H A D | apps.c | 2032 char *stmp, *vtmp = NULL; in pkey_ctrl_string() local 2037 vtmp = strchr(stmp, ':'); in pkey_ctrl_string() 2038 if (vtmp == NULL) in pkey_ctrl_string() 2041 *vtmp = 0; in pkey_ctrl_string() 2042 vtmp++; in pkey_ctrl_string() 2043 rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp); in pkey_ctrl_string() 3305 char *opt = "", *stmp, *vtmp = NULL; in app_params_new_from_opts() local 3318 || (vtmp = strchr(stmp, ':')) == NULL) in app_params_new_from_opts() 3321 *vtmp = 0; in app_params_new_from_opts() 3323 vtmp++; in app_params_new_from_opts() [all …]
|
/freebsd/crypto/openssl/providers/implementations/rands/ |
H A D | drbg_hash.c | 55 unsigned char vtmp[HASH_PRNG_MAX_SEEDLEN]; member 75 unsigned char *vtmp = hash->vtmp; in hash_df() local 111 if (!EVP_DigestFinal(ctx, vtmp, NULL)) in hash_df() 113 memcpy(out, vtmp, outlen); in hash_df() 114 OPENSSL_cleanse(vtmp, hash->blocklen); in hash_df() 185 && EVP_DigestFinal(ctx, hash->vtmp, NULL) in add_hash_to_v() 186 && add_bytes(drbg, hash->V, hash->vtmp, hash->blocklen); in add_hash_to_v() 214 memcpy(hash->vtmp, hash->V, drbg->seedlen); in hash_gen() 218 || !EVP_DigestUpdate(hash->ctx, hash->vtmp, drb in hash_gen() [all...] |
/freebsd/crypto/openssl/crypto/x509/ |
H A D | v3_info.c | 68 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 D | v3_utl.c | 43 CONF_VALUE *vtmp = NULL; in x509v3_add_len_value() local 57 if ((vtmp = OPENSSL_malloc(sizeof(*vtmp))) == NULL) in x509v3_add_len_value() 61 vtmp->section = NULL; in x509v3_add_len_value() 62 vtmp->name = tname; in x509v3_add_len_value() 63 vtmp->value = tvalue; in x509v3_add_len_value() 64 if (!sk_CONF_VALUE_push(*extlist, vtmp)) in x509v3_add_len_value() 73 OPENSSL_free(vtmp); in x509v3_add_len_value() 316 char *ntmp, *vtmp; in STACK_OF() local 362 vtmp = strip_spaces(q); in STACK_OF() 363 if (!vtmp) { in STACK_OF() [all …]
|
/freebsd/contrib/arm-optimized-routines/networking/arm/ |
H A D | chksum_simd.c | 42 uint32x2_t vtmp = vreinterpret_u32_u64(vword64); in __chksum_arm_simd() local 44 vsum = vpaddl_u32(vtmp); in __chksum_arm_simd() 95 uint32x2_t vtmp = vmovn_u64(vsum0); in __chksum_arm_simd() local 97 vsum = vpadal_u32(vsum, vtmp); in __chksum_arm_simd() 103 uint32x2_t vtmp = vld1_u32(ptr32); in __chksum_arm_simd() local 105 vsum = vpadal_u32(vsum, vtmp); in __chksum_arm_simd()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OSSL_PARAM_allocate_from_text.pod | 129 char *stmp, *vtmp = NULL; 134 vtmp = strchr(stmp, ':'); 135 if (vtmp != NULL) 136 *vtmp++ = '\0'; 137 rv = EVP_MAC_ctrl_str(ctx, stmp, vtmp); 167 char *stmp, *vtmp = NULL; 171 || (vtmp = strchr(stmp, ':')) == NULL) 174 *vtmp++ = '\0'; 177 vtmp, strlen(vtmp), NULL))
|
/freebsd/contrib/arm-optimized-routines/networking/aarch64/ |
H A D | chksum_simd.c | 120 uint32x4_t vtmp = vld1q_u32(ptr32); in __chksum_aarch64_simd() local 121 vsum0 = vpadalq_u32(vsum0, vtmp); in __chksum_aarch64_simd() 130 uint32x2_t vtmp = vld1_u32(ptr32); in __chksum_aarch64_simd() local 131 vsum0 = vaddw_u32(vsum0, vtmp); in __chksum_aarch64_simd()
|
/freebsd/crypto/openssl/crypto/asn1/ |
H A D | asn1_gen.c | 579 CONF_VALUE vtmp; in asn1_str2type() local 606 vtmp.name = NULL; in asn1_str2type() 607 vtmp.section = NULL; in asn1_str2type() 608 vtmp.value = (char *)str; in asn1_str2type() 609 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) { in asn1_str2type()
|
H A D | tasn_fre.c | 139 ASN1_VALUE *vtmp = sk_ASN1_VALUE_value(sk, i); in ossl_asn1_template_free() local 141 ossl_asn1_item_embed_free(&vtmp, ASN1_ITEM_ptr(tt->item), embed); in ossl_asn1_template_free()
|
H A D | tasn_dec.c | 624 ASN1_VALUE *vtmp; in asn1_template_noexp_d2i() local 626 vtmp = sk_ASN1_VALUE_pop(sktmp); in asn1_template_noexp_d2i() 627 ASN1_item_ex_free(&vtmp, ASN1_ITEM_ptr(tt->item)); in asn1_template_noexp_d2i()
|
/freebsd/stand/libsa/zfs/ |
H A D | zfsimpl.c | 2004 vdev_t vtmp; in vdev_probe() local 2018 memset(&vtmp, 0, sizeof(vtmp)); in vdev_probe() 2019 vtmp.v_phys_read = _read; in vdev_probe() 2020 vtmp.v_phys_write = _write; in vdev_probe() 2021 vtmp.v_priv = priv; in vdev_probe() 2022 vtmp.v_psize = P2ALIGN(ldi_get_size(priv), in vdev_probe() 2026 if (vtmp.v_psize < SPA_MINDEVSIZE) in vdev_probe() 2029 nvl = vdev_label_read_config(&vtmp, UINT64_MAX); in vdev_probe() 2138 vdev->v_psize = vtmp.v_psize; in vdev_probe()
|
/freebsd/sys/dev/ice/ |
H A D | ice_sched.c | 846 struct ice_sched_agg_vsi_info *vtmp; in ice_sched_clear_agg() 848 LIST_FOR_EACH_ENTRY_SAFE(agg_vsi_info, vtmp, in ice_sched_clear_agg() 2127 struct ice_sched_agg_vsi_info *vtmp; in ice_sched_rm_agg_vsi_info() 2129 LIST_FOR_EACH_ENTRY_SAFE(agg_vsi_info, vtmp, in ice_sched_rm_agg_vsi_info() 2999 struct ice_sched_agg_vsi_info *vtmp; in ice_sched_assoc_vsi_to_agg() 3001 LIST_FOR_EACH_ENTRY_SAFE(old_agg_vsi_info, vtmp, in ice_sched_assoc_vsi_to_agg() 844 struct ice_sched_agg_vsi_info *vtmp; ice_sched_clear_agg() local 2125 struct ice_sched_agg_vsi_info *vtmp; ice_sched_rm_agg_vsi_info() local 2997 struct ice_sched_agg_vsi_info *vtmp; ice_sched_assoc_vsi_to_agg() local
|
/freebsd/contrib/libucl/src/ |
H A D | ucl_util.c | 609 struct ucl_variable *var, *vtmp; local 638 LL_FOREACH_SAFE (parser->variables, var, vtmp) {
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonRegisterInfo.td | 228 def VTMP : Ri<0, "vtmp">, DwarfRegNum<[131]>;
|
H A D | HexagonDepInstrInfo.td | 33717 "vtmp.h = vgather($Rt32,$Mu2,$Vv32.h).h", 33734 "if ($Qs4) vtmp.h = vgather($Rt32,$Mu2,$Vv32.h).h", 33751 "vtmp.h = vgather($Rt32,$Mu2,$Vvv32.w).h", 33767 "if ($Qs4) vtmp.h = vgather($Rt32,$Mu2,$Vvv32.w).h", 33783 "vtmp.w = vgather($Rt32,$Mu2,$Vv32.w).w", 33800 "if ($Qs4) vtmp.w = vgather($Rt32,$Mu2,$Vv32.w).w", [all...] |