Searched refs:tmpkey (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Objects/ |
D | setobject.c | 1814 PyObject *tmpkey; in set_contains() local 1822 tmpkey = make_new_set(&PyFrozenSet_Type, key); in set_contains() 1823 if (tmpkey == NULL) in set_contains() 1825 rv = set_contains_key(so, tmpkey); in set_contains() 1826 Py_DECREF(tmpkey); in set_contains() 1847 PyObject *tmpkey; in set_remove() local 1855 tmpkey = make_new_set(&PyFrozenSet_Type, key); in set_remove() 1856 if (tmpkey == NULL) in set_remove() 1858 rv = set_discard_key(so, tmpkey); in set_remove() 1859 Py_DECREF(tmpkey); in set_remove() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | vividas.c | 157 uint32_t tmpkey = *key_ptr - key; in decode_block() local 163 xor_block(tmp, tmp, 4, key, &tmpkey); in decode_block() 249 uint32_t tmpkey = recover_key(ibuf, expected_size); in read_sb_block() local 250 k2 = tmpkey; in read_sb_block() 251 decode_block(ibuf, sbuf, 8, tmpkey, &k2, 0); in read_sb_block() 255 *key = tmpkey; in read_sb_block()
|
/third_party/openssl/test/ |
D | evp_test.c | 1485 char *tmpkey, *tmpval; in mac_test_run_mac() local 1488 if (!TEST_ptr(tmpkey = OPENSSL_strdup(value))) { in mac_test_run_mac() 1492 tmpval = strchr(tmpkey, ':'); in mac_test_run_mac() 1499 tmpkey, tmpval, in mac_test_run_mac() 1501 OPENSSL_free(tmpkey); in mac_test_run_mac() 1507 OPENSSL_free(tmpkey); in mac_test_run_mac()
|
D | sslapitest.c | 9350 EVP_PKEY *tmpkey = NULL; in test_dh_auto() local 9429 if (!TEST_int_gt(SSL_get_tmp_key(serverssl, &tmpkey), 0)) in test_dh_auto() 9431 if (!TEST_size_t_eq(EVP_PKEY_get_bits(tmpkey), expdhsize)) in test_dh_auto() 9444 EVP_PKEY_free(tmpkey); in test_dh_auto()
|
/third_party/openssl/ssl/ |
D | t1_lib.c | 1151 EVP_PKEY *tmpkey = EVP_PKEY_new(); in ssl_setup_sig_algs() local 1154 if (cache == NULL || tmpkey == NULL) in ssl_setup_sig_algs() 1178 if (!EVP_PKEY_set_type(tmpkey, lu->sig)) { in ssl_setup_sig_algs() 1182 pctx = EVP_PKEY_CTX_new_from_pkey(ctx->libctx, tmpkey, ctx->propq); in ssl_setup_sig_algs() 1195 EVP_PKEY_free(tmpkey); in ssl_setup_sig_algs()
|