Home
last modified time | relevance | path

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

/freebsd-13.1/crypto/openssl/crypto/ec/
H A Dec_key.c422 BIGNUM *tmp_key = NULL; in EC_KEY_set_private_key() local
484 tmp_key = BN_dup(priv_key); in EC_KEY_set_private_key()
485 if (tmp_key == NULL) in EC_KEY_set_private_key()
488 BN_set_flags(tmp_key, BN_FLG_CONSTTIME); in EC_KEY_set_private_key()
491 if (bn_wexpand(tmp_key, fixed_top) == NULL) { in EC_KEY_set_private_key()
492 BN_clear_free(tmp_key); in EC_KEY_set_private_key()
497 key->priv_key = tmp_key; in EC_KEY_set_private_key()
/freebsd-13.1/contrib/ofed/opensm/libvendor/
H A Dosm_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.1/lib/libc/db/hash/
H A Dhash_bigkey.c505 key->data = (u_char *)hashp->tmp_key; in __big_keydata()
528 if (hashp->tmp_key != NULL) in collect_key()
529 free(hashp->tmp_key); in collect_key()
530 if ((hashp->tmp_key = (char *)malloc(totlen)) == NULL) in collect_key()
544 memmove(&hashp->tmp_key[len], (bufp->page) + bp[1], mylen); in collect_key()
H A Dhash.h101 char *tmp_key; /* Temporary Buffer for BIG keys */ member
H A Dhash.c421 if (hashp->tmp_key) in hdestroy()
422 free(hashp->tmp_key); in hdestroy()
/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/
H A Dconfig_impl.h62 svn_stringbuf_t *tmp_key; member
H A Dconfig.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()
H A Dconfig_file.c691 cfg->tmp_key = svn_stringbuf_create_empty(pool); in svn_config__shallow_copy()