Home
last modified time | relevance | path

Searched refs:tmp_key (Results 1 – 8 of 8) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/ec/
HDec_key.c422 BIGNUM *tmp_key = NULL; in EC_KEY_set_private_key() local
494 tmp_key = BN_dup(priv_key); in EC_KEY_set_private_key()
495 if (tmp_key == NULL) in EC_KEY_set_private_key()
498 BN_set_flags(tmp_key, BN_FLG_CONSTTIME); in EC_KEY_set_private_key()
501 if (bn_wexpand(tmp_key, fixed_top) == NULL) { in EC_KEY_set_private_key()
502 BN_clear_free(tmp_key); in EC_KEY_set_private_key()
507 key->priv_key = tmp_key; in EC_KEY_set_private_key()
/freebsd-13-stable/contrib/ofed/opensm/libvendor/
HDosm_vendor_mlx_txn.c367 uint64_t tmp_key; in __osmv_txnmgr_lookup() local
381 tmp_key = cl_qmap_key(p_item); in __osmv_txnmgr_lookup()
384 "Found key 0x%016" PRIx64 "\n", tmp_key); in __osmv_txnmgr_lookup()
406 uint64_t tmp_key; in __osmv_txnmgr_insert_txn() local
429 tmp_key = cl_qmap_key(p_item); in __osmv_txnmgr_insert_txn()
432 "Found key 0x%016" PRIx64 "\n", tmp_key); in __osmv_txnmgr_insert_txn()
/freebsd-13-stable/lib/libc/db/hash/
HDhash_bigkey.c503 key->data = (u_char *)hashp->tmp_key; in __big_keydata()
526 if (hashp->tmp_key != NULL) in collect_key()
527 free(hashp->tmp_key); in collect_key()
528 if ((hashp->tmp_key = (char *)malloc(totlen)) == NULL) in collect_key()
542 memmove(&hashp->tmp_key[len], (bufp->page) + bp[1], mylen); in collect_key()
HDhash.h100 char *tmp_key; /* Temporary Buffer for BIG keys */ member
HDhash.c419 if (hashp->tmp_key) in hdestroy()
420 free(hashp->tmp_key); in hdestroy()
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/
HDconfig_impl.h62 svn_stringbuf_t *tmp_key; member
HDconfig.c118 cfg->tmp_key = svn_stringbuf_create_empty(result_pool); in svn_config_create2()
495 void *sec_ptr = get_hash_value(cfg->sections, cfg->tmp_key, section, in find_option()
503 cfg_option_t *opt = get_hash_value(sec->options, cfg->tmp_key, option, in find_option()
1332 return NULL != get_hash_value(cfg->sections, cfg->tmp_key, section, in svn_config_has_section()
HDconfig_file.c691 cfg->tmp_key = svn_stringbuf_create_empty(pool); in svn_config__shallow_copy()