| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-meta/ |
| H A D | map.c | 259 struct berval vtmp; in map_attr_value() local 290 switch ( ldap_back_dn_massage( &fdc, value, &vtmp ) ) { in map_attr_value() 292 if ( vtmp.bv_val != value->bv_val ) { in map_attr_value() 309 NULL, NULL, value, &vtmp, memctx ) ) in map_attr_value() 316 ldap_back_map( &dc->target->mt_rwmap.rwm_oc, value, &vtmp, remap ); in map_attr_value() 317 if ( BER_BVISNULL( &vtmp ) || BER_BVISEMPTY( &vtmp ) ) { in map_attr_value() 318 vtmp = *value; in map_attr_value() 322 vtmp = *value; in map_attr_value() 325 filter_escape_value_x( &vtmp, mapped_value, memctx ); in map_attr_value() 329 ber_memfree( vtmp.bv_val ); in map_attr_value() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/overlays/ |
| H A D | rwmmap.c | 430 struct berval vtmp = BER_BVNULL; in map_attr_value() local 458 vtmp = *value; in map_attr_value() 459 rc = rwm_dn_massage_normalize( &fdc, value, &vtmp ); in map_attr_value() 462 if ( vtmp.bv_val != value->bv_val ) { in map_attr_value() 478 NULL, NULL, value, &vtmp, memctx ) ) in map_attr_value() 487 rwm_map( &dc->rwmap->rwm_oc, value, &vtmp, remap ); in map_attr_value() 488 if ( BER_BVISNULL( &vtmp ) || BER_BVISEMPTY( &vtmp ) ) { in map_attr_value() 489 vtmp = *value; in map_attr_value() 493 vtmp = *value; in map_attr_value() 496 filter_escape_value_x( &vtmp, mapped_value, memctx ); in map_attr_value() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/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 | 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 …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/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, drbg->seedlen)) in hash_gen() 222 if (!EVP_DigestFinal(hash->ctx, hash->vtmp, NULL)) in hash_gen() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/ |
| H A D | value.c | 274 struct berval ibv, tmp, vtmp; in ordered_value_renumber() local 281 vtmp = a->a_vals[i]; in ordered_value_renumber() 282 if ( vtmp.bv_val[0] == '{' ) { in ordered_value_renumber() 283 ptr = ber_bvchr(&vtmp, '}'); in ordered_value_renumber() 286 vtmp.bv_len -= ptr - vtmp.bv_val; in ordered_value_renumber() 287 vtmp.bv_val = ptr; in ordered_value_renumber() 289 tmp.bv_len = ibv.bv_len + vtmp.bv_len; in ordered_value_renumber() 292 AC_MEMCPY( tmp.bv_val + ibv.bv_len, vtmp.bv_val, vtmp.bv_len ); in ordered_value_renumber() 298 vtmp = a->a_nvals[i]; in ordered_value_renumber() 299 if ( vtmp.bv_val[0] == '{' ) { in ordered_value_renumber() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/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;
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/ |
| 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 | 41 CONF_VALUE *vtmp = NULL; in x509v3_add_len_value() local 58 if ((vtmp = OPENSSL_malloc(sizeof(*vtmp))) == NULL) in x509v3_add_len_value() 62 vtmp->section = NULL; in x509v3_add_len_value() 63 vtmp->name = tname; in x509v3_add_len_value() 64 vtmp->value = tvalue; in x509v3_add_len_value() 65 if (!sk_CONF_VALUE_push(*extlist, vtmp)) in x509v3_add_len_value() 74 OPENSSL_free(vtmp); in x509v3_add_len_value() 316 char *ntmp, *vtmp; in STACK_OF() local 361 vtmp = strip_spaces(q); in STACK_OF() 362 if (!vtmp) { in STACK_OF() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/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))
|
| /netbsd-src/external/mit/isl/dist/imath/ |
| H A D | imath.c | 428 mpz_t vtmp; in mp_int_init_value() local 431 s_fake(&vtmp, value, vbuf); in mp_int_init_value() 432 return mp_int_init_copy(z, &vtmp); in mp_int_init_value() 436 mpz_t vtmp; in mp_int_init_uvalue() local 439 s_ufake(&vtmp, uvalue, vbuf); in mp_int_init_uvalue() 440 return mp_int_init_copy(z, &vtmp); in mp_int_init_uvalue() 444 mpz_t vtmp; in mp_int_set_value() local 447 s_fake(&vtmp, value, vbuf); in mp_int_set_value() 448 return mp_int_copy(&vtmp, z); in mp_int_set_value() 452 mpz_t vtmp; in mp_int_set_uvalue() local [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/ |
| H A D | search.c | 78 vtmp, in asyncmeta_int_filter2bv() local 105 asyncmeta_dn_massage( dc, &f->f_av_value, &vtmp ); in asyncmeta_int_filter2bv() 107 vtmp = f->f_av_value; in asyncmeta_int_filter2bv() 110 filter_escape_value_x( &vtmp, &ntmp, memctx ); in asyncmeta_int_filter2bv() 234 rc = asyncmeta_int_filter2bv( dc, p, &vtmp ); in asyncmeta_int_filter2bv() 239 fstr->bv_len += vtmp.bv_len; in asyncmeta_int_filter2bv() 242 snprintf( &fstr->bv_val[len-1], vtmp.bv_len + 2, in asyncmeta_int_filter2bv() 243 /*"("*/ "%s)", vtmp.bv_len ? vtmp.bv_val : "" ); in asyncmeta_int_filter2bv() 245 ber_memfree_x( vtmp.bv_val, memctx ); in asyncmeta_int_filter2bv()
|
| /netbsd-src/external/bsd/libbind/dist/tests/ |
| H A D | dig8.c | 314 char msg[120], **vtmp; in main() local 369 vtmp = argv; in main() 371 while (*vtmp != NULL) { in main() 372 if (strcmp(*vtmp, "-h") == 0 || in main() 373 strcmp(*vtmp, "-help") == 0 || in main() 374 strcmp(*vtmp, "-usage") == 0 || in main() 375 strcmp(*vtmp, "help") == 0) { in main() 380 if (strcmp(*vtmp, "-f") == 0) { in main() 382 if ((qfp = fopen(*++vtmp, "r")) == NULL) { in main() 393 *ax++ = *vtmp; in main() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/asn1/ |
| H A D | asn1_gen.c | 581 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 D | tasn_fre.c | 135 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 D | tasn_dec.c | 583 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()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/asn1/ |
| H A D | asn1_gen.c | 578 CONF_VALUE vtmp; in asn1_str2type() local 605 vtmp.name = NULL; in asn1_str2type() 606 vtmp.section = NULL; in asn1_str2type() 607 vtmp.value = (char *)str; in asn1_str2type() 608 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) { in asn1_str2type()
|
| 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()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/apps/ |
| H A D | opt.c | 459 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 D | apps.c | 1923 char *stmp, *vtmp = NULL; in pkey_ctrl_string() local 1927 vtmp = strchr(stmp, ':'); in pkey_ctrl_string() 1928 if (vtmp) { in pkey_ctrl_string() 1929 *vtmp = 0; in pkey_ctrl_string() 1930 vtmp++; in pkey_ctrl_string() 1932 rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp); in pkey_ctrl_string()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/c-family/ |
| H A D | c-omp.cc | 223 tree x, type, addr, pre = NULL_TREE, rtmp = NULL_TREE, vtmp = NULL_TREE; in c_finish_omp_atomic() local 591 vtmp = create_tmp_var_raw (TREE_TYPE (x)); in c_finish_omp_atomic() 592 DECL_CONTEXT (vtmp) = current_function_decl; in c_finish_omp_atomic() 595 vtmp = v; in c_finish_omp_atomic() 596 x = build_modify_expr (loc, vtmp, NULL_TREE, NOP_EXPR, in c_finish_omp_atomic() 603 vtmp = build4 (TARGET_EXPR, TREE_TYPE (vtmp), vtmp, in c_finish_omp_atomic() 604 build_zero_cst (TREE_TYPE (vtmp)), NULL, NULL); in c_finish_omp_atomic() 606 && TREE_OPERAND (x, 0) == TARGET_EXPR_SLOT (vtmp)); in c_finish_omp_atomic() 607 TREE_OPERAND (x, 0) = vtmp; in c_finish_omp_atomic() 651 if (v && vtmp != v) in c_finish_omp_atomic() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/fortran/ |
| H A D | trans-openmp.cc | 4916 tree vtmp = create_tmp_var_raw (TREE_TYPE (x)); in gfc_trans_omp_atomic() local 4917 DECL_CONTEXT (vtmp) = current_function_decl; in gfc_trans_omp_atomic() 4919 TREE_TYPE (vtmp), vtmp, x); in gfc_trans_omp_atomic() 4920 vtmp = build4 (TARGET_EXPR, TREE_TYPE (vtmp), vtmp, in gfc_trans_omp_atomic() 4921 build_zero_cst (TREE_TYPE (vtmp)), NULL, NULL); in gfc_trans_omp_atomic() 4922 TREE_OPERAND (x, 0) = vtmp; in gfc_trans_omp_atomic() 4923 tree x2 = convert (TREE_TYPE (vse.expr), vtmp); in gfc_trans_omp_atomic()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonRegisterInfo.td | 203 def VTMP : Ri<0, "vtmp">, DwarfRegNum<[131]>;
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | expression.c | 1276 VarDeclaration *vtmp = ((VarExp *)e)->var->isVarDeclaration(); in valueNoDtor() local 1277 if (vtmp && vtmp->storage_class & STCrvalue) in valueNoDtor() 1279 vtmp->storage_class |= STCnodtor; in valueNoDtor()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | expression.d | 442 auto vtmp = ve.var.isVarDeclaration(); in valueNoDtor() local 443 if (vtmp && (vtmp.storage_class & STC.rvalue)) in valueNoDtor() 445 vtmp.storage_class |= STC.nodtor; in valueNoDtor()
|