| /src/crypto/openssl/crypto/sm4/asm/ |
| H A D | vpsm4-armv8.pl | 30 my @vtmp=map("v$_",(0..3)); 130 movi @vtmp[0].16b,#64 131 movi @vtmp[1].16b,#128 132 movi @vtmp[2].16b,#192 133 sub @vtmp[0].16b,$dat.16b,@vtmp[0].16b 134 sub @vtmp[1].16b,$dat.16b,@vtmp[1].16b 135 sub @vtmp[2].16b,$dat.16b,@vtmp[2].16b 137 tbl @vtmp[0].16b,{@sbox[4].16b,@sbox[5].16b,@sbox[6].16b,@sbox[7].16b},@vtmp[0].16b 138 tbl @vtmp[1].16b,{@sbox[8].16b,@sbox[9].16b,@sbox[10].16b,@sbox[11].16b},@vtmp[1].16b 139 tbl @vtmp[2].16b,{@sbox[12].16b,@sbox[13].16b,@sbox[14].16b,@sbox[15].16b},@vtmp[2].16b [all …]
|
| H A D | vpsm4_ex-armv8.pl | 30 my @vtmp=map("v$_",(0..3)); 150 tbl @vtmp[0].16b, {$dat.16b}, $MaskV.16b 152 &mul_matrix(@vtmp[0], $TAHMatV, $TALMatV, $vtmp4); 154 eor @vtmp[1].16b, @vtmp[1].16b, @vtmp[1].16b 155 aese @vtmp[0].16b,@vtmp[1].16b 157 &mul_matrix(@vtmp[0], $ATAHMatV, $ATALMatV, $vtmp4); 159 mov $dat.16b,@vtmp[0].16b 162 ushr @vtmp[0].4s,$dat.4s,32-2 163 ushr @vtmp[1].4s,$dat.4s,32-10 164 ushr @vtmp[2].4s,$dat.4s,32-18 [all …]
|
| /src/crypto/openssl/apps/lib/ |
| H A D | app_x509.c | 88 char *stmp, *vtmp = NULL; in do_x509_ctrl_string() local 95 vtmp = strchr(stmp, ':'); in do_x509_ctrl_string() 96 if (vtmp != NULL) { in do_x509_ctrl_string() 97 *vtmp = 0; in do_x509_ctrl_string() 98 vtmp++; in do_x509_ctrl_string() 99 vtmp_len = strlen(vtmp); in do_x509_ctrl_string() 107 if (vtmp != NULL) { in do_x509_ctrl_string() 111 hexid = OPENSSL_hexstr2buf((const char *)vtmp, &hexid_len); in do_x509_ctrl_string() 113 stmp = vtmp = hexid; in do_x509_ctrl_string() 121 rv = ctrl(object, cmd, vtmp, vtmp_len); in do_x509_ctrl_string()
|
| H A D | opt.c | 727 const X509_VERIFY_PARAM *vtmp; in opt_verify() local 771 vtmp = X509_VERIFY_PARAM_lookup(opt_arg()); in opt_verify() 772 if (vtmp == NULL) { in opt_verify() 777 X509_VERIFY_PARAM_set1(vpm, vtmp); in opt_verify()
|
| H A D | apps.c | 2058 char *stmp, *vtmp = NULL; in pkey_ctrl_string() local 2063 vtmp = strchr(stmp, ':'); in pkey_ctrl_string() 2064 if (vtmp == NULL) in pkey_ctrl_string() 2067 *vtmp = 0; in pkey_ctrl_string() 2068 vtmp++; in pkey_ctrl_string() 2069 rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp); in pkey_ctrl_string() 3404 char *opt = "", *stmp, *vtmp = NULL; in app_params_new_from_opts() local 3417 || (vtmp = strchr(stmp, ':')) == NULL) in app_params_new_from_opts() 3420 *vtmp = 0; in app_params_new_from_opts() 3422 vtmp++; in app_params_new_from_opts() [all …]
|
| /src/crypto/openssl/providers/implementations/rands/ |
| H A D | drbg_hash.c | 60 unsigned char vtmp[HASH_PRNG_MAX_SEEDLEN]; member 80 unsigned char *vtmp = hash->vtmp; in hash_df() local 116 if (!EVP_DigestFinal(ctx, vtmp, NULL)) in hash_df() 118 memcpy(out, vtmp, outlen); in hash_df() 119 OPENSSL_cleanse(vtmp, hash->blocklen); in hash_df() 190 && EVP_DigestFinal(ctx, hash->vtmp, NULL) in add_hash_to_v() 191 && add_bytes(drbg, hash->V, hash->vtmp, hash->blocklen); in add_hash_to_v() 219 memcpy(hash->vtmp, hash->V, drbg->seedlen); in hash_gen() 223 || !EVP_DigestUpdate(hash->ctx, hash->vtmp, drbg->seedlen)) in hash_gen() 227 if (!EVP_DigestFinal(hash->ctx, hash->vtmp, NULL)) in hash_gen() [all …]
|
| /src/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()
|
| /src/crypto/openssl/crypto/x509/ |
| H A D | v3_info.c | 67 CONF_VALUE *vtmp; variable 80 vtmp = sk_CONF_VALUE_value(tret, i); 82 nlen = strlen(objtmp) + 3 + strlen(vtmp->name) + 1; 86 BIO_snprintf(ntmp, nlen, "%s - %s", objtmp, vtmp->name); 87 OPENSSL_free(vtmp->name); 88 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() 63 vtmp->section = NULL; in x509v3_add_len_value() 64 vtmp->name = tname; in x509v3_add_len_value() 65 vtmp->value = tvalue; in x509v3_add_len_value() 66 if (!sk_CONF_VALUE_push(*extlist, vtmp)) in x509v3_add_len_value() 74 OPENSSL_free(vtmp); in x509v3_add_len_value() 318 char *ntmp, *vtmp; in STACK_OF() local 362 vtmp = strip_spaces(q); in STACK_OF() 363 if (!vtmp) { in STACK_OF() [all …]
|
| /src/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))
|
| /src/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()
|
| /src/crypto/openssl/crypto/sm3/asm/ |
| H A D | sm3-armv8.pl | 69 my $vtmp = shift; 74 sm3ss1 $vtmp.4s, $vstate0.4s, $vconst0.4s, $vstate1.4s 77 sm3tt1$ab $vstate0.4s, $vtmp.4s, $vw.4s[$i] 78 sm3tt2$ab $vstate1.4s, $vtmp.4s, $s0.4s[$i]
|
| /src/crypto/openssl/crypto/asn1/ |
| H A D | asn1_gen.c | 583 CONF_VALUE vtmp; in asn1_str2type() local 610 vtmp.name = NULL; in asn1_str2type() 611 vtmp.section = NULL; in asn1_str2type() 612 vtmp.value = (char *)str; in asn1_str2type() 613 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 | 650 ASN1_VALUE *vtmp; in asn1_template_noexp_d2i() local 652 vtmp = sk_ASN1_VALUE_pop(sktmp); in asn1_template_noexp_d2i() 653 ASN1_item_ex_free(&vtmp, ASN1_ITEM_ptr(tt->item)); in asn1_template_noexp_d2i()
|
| /src/stand/libsa/zfs/ |
| H A D | zfsimpl.c | 2057 vdev_t vtmp; in vdev_probe() local 2070 memset(&vtmp, 0, sizeof(vtmp)); in vdev_probe() 2071 vtmp.v_phys_read = _read; in vdev_probe() 2072 vtmp.v_phys_write = _write; in vdev_probe() 2073 vtmp.v_priv = priv; in vdev_probe() 2074 vtmp.v_psize = P2ALIGN(ldi_get_size(priv), in vdev_probe() 2078 if (vtmp.v_psize < SPA_MINDEVSIZE) in vdev_probe() 2081 nvl = vdev_label_read_config(&vtmp, UINT64_MAX); in vdev_probe() 2233 vdev->v_psize = vtmp.v_psize; in vdev_probe()
|
| /src/sys/dev/ice/ |
| H A D | ice_sched.c | 846 struct ice_sched_agg_vsi_info *vtmp; in ice_sched_clear_agg() local 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() local 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() local 3001 LIST_FOR_EACH_ENTRY_SAFE(old_agg_vsi_info, vtmp, in ice_sched_assoc_vsi_to_agg()
|
| /src/contrib/libucl/src/ |
| H A D | ucl_util.c | 609 struct ucl_variable *var, *vtmp; local 638 LL_FOREACH_SAFE (parser->variables, var, vtmp) {
|
| /src/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",
|