/third_party/selinux/libsepol/cil/src/ |
H A D | cil_symtab.c | 152 static void cil_complex_symtab_hash(struct cil_complex_symtab_key *ckey, int mask, intptr_t *hash) in cil_complex_symtab_hash() argument 154 intptr_t sum = ckey->key1 + ckey->key2 + ckey->key3 + ckey->key4; in cil_complex_symtab_hash() 168 struct cil_complex_symtab_key *ckey, in cil_complex_symtab_insert() 179 node->ckey = ckey; in cil_complex_symtab_insert() 182 cil_complex_symtab_hash(ckey, symtab->mask, &hash); in cil_complex_symtab_insert() 186 if (ckey in cil_complex_symtab_insert() 167 cil_complex_symtab_insert(struct cil_complex_symtab *symtab, struct cil_complex_symtab_key *ckey, struct cil_complex_symtab_datum *datum) cil_complex_symtab_insert() argument 226 cil_complex_symtab_search(struct cil_complex_symtab *symtab, struct cil_complex_symtab_key *ckey, struct cil_complex_symtab_datum **out) cil_complex_symtab_search() argument [all...] |
H A D | cil_symtab.h | 61 struct cil_complex_symtab_key *ckey; member 85 int cil_complex_symtab_insert(struct cil_complex_symtab *symtab, struct cil_complex_symtab_key *ckey, struct cil_complex_symtab_datum *datum); 86 void cil_complex_symtab_search(struct cil_complex_symtab *symtab, struct cil_complex_symtab_key *ckey, struct cil_complex_symtab_datum **out);
|
/third_party/mesa3d/src/gallium/drivers/v3d/ |
H A D | v3d_disk_cache.c | 93 struct v3d_key *ckey = malloc(ckey_size); in v3d_disk_cache_compute_key() local 94 memcpy(ckey, key, ckey_size); in v3d_disk_cache_compute_key() 95 ckey->shader_state = NULL; in v3d_disk_cache_compute_key() 97 blob_write_bytes(&blob, ckey, ckey_size); in v3d_disk_cache_compute_key() 104 free(ckey); in v3d_disk_cache_compute_key()
|
/third_party/node/deps/openssl/openssl/ssl/statem/ |
H A D | statem_clnt.c | 2915 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_dhe() local 2928 ckey = ssl_generate_pkey(s, skey); in tls_construct_cke_dhe() 2929 if (ckey == NULL) { in tls_construct_cke_dhe() 2934 if (ssl_derive(s, ckey, skey, 0) == 0) { in tls_construct_cke_dhe() 2942 encoded_pub_len = EVP_PKEY_get1_encoded_public_key(ckey, &encoded_pub); in tls_construct_cke_dhe() 2945 EVP_PKEY_free(ckey); in tls_construct_cke_dhe() 2954 prime_len = EVP_PKEY_get_size(ckey); in tls_construct_cke_dhe() 2972 EVP_PKEY_free(ckey); in tls_construct_cke_dhe() 2980 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_ecdhe() local 2989 ckey in tls_construct_cke_ecdhe() [all...] |
H A D | statem_srvr.c | 2980 EVP_PKEY *ckey = NULL; in tls_process_cke_dhe() local 3002 ckey = EVP_PKEY_new(); in tls_process_cke_dhe() 3003 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) { in tls_process_cke_dhe() 3008 if (!EVP_PKEY_set1_encoded_public_key(ckey, data, i)) { in tls_process_cke_dhe() 3013 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_process_cke_dhe() 3022 EVP_PKEY_free(ckey); in tls_process_cke_dhe() 3029 EVP_PKEY *ckey = NULL; in tls_process_cke_ecdhe() local 3056 ckey = EVP_PKEY_new(); in tls_process_cke_ecdhe() 3057 if (ckey in tls_process_cke_ecdhe() [all...] |
H A D | extensions_srvr.c | 1628 EVP_PKEY *ckey = s->s3.peer_tmp, *skey = NULL; in tls_construct_stoc_key_share() local 1632 if (ckey != NULL) { in tls_construct_stoc_key_share() 1647 if (ckey == NULL) { in tls_construct_stoc_key_share() 1677 skey = ssl_generate_pkey(s, ckey); in tls_construct_stoc_key_share() 1704 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_construct_stoc_key_share() 1719 if (ssl_encapsulate(s, ckey, &ct, &ctlen, 0) == 0) { in tls_construct_stoc_key_share()
|
H A D | extensions_clnt.c | 1783 EVP_PKEY *ckey = s->s3.tmp.pkey, *skey = NULL; in tls_parse_stoc_key_share() local 1787 if (ckey == NULL || s->s3.peer_tmp != NULL) { in tls_parse_stoc_key_share() 1880 if (skey == NULL || EVP_PKEY_copy_parameters(skey, ckey) <= 0) { in tls_parse_stoc_key_share() 1893 if (ssl_derive(s, ckey, skey, 1) == 0) { in tls_parse_stoc_key_share() 1904 if (ssl_decapsulate(s, ckey, ct, ctlen, 1) == 0) { in tls_parse_stoc_key_share()
|
/third_party/openssl/ssl/statem/ |
H A D | statem_clnt.c | 2907 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_dhe() local 2920 ckey = ssl_generate_pkey(s, skey); in tls_construct_cke_dhe() 2921 if (ckey == NULL) { in tls_construct_cke_dhe() 2926 if (ssl_derive(s, ckey, skey, 0) == 0) { in tls_construct_cke_dhe() 2934 encoded_pub_len = EVP_PKEY_get1_encoded_public_key(ckey, &encoded_pub); in tls_construct_cke_dhe() 2937 EVP_PKEY_free(ckey); in tls_construct_cke_dhe() 2946 prime_len = EVP_PKEY_get_size(ckey); in tls_construct_cke_dhe() 2964 EVP_PKEY_free(ckey); in tls_construct_cke_dhe() 2972 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_ecdhe() local 2981 ckey in tls_construct_cke_ecdhe() [all...] |
H A D | statem_srvr.c | 2959 EVP_PKEY *ckey = NULL; in tls_process_cke_dhe() local 2981 ckey = EVP_PKEY_new(); in tls_process_cke_dhe() 2982 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) { in tls_process_cke_dhe() 2987 if (!EVP_PKEY_set1_encoded_public_key(ckey, data, i)) { in tls_process_cke_dhe() 2992 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_process_cke_dhe() 3001 EVP_PKEY_free(ckey); in tls_process_cke_dhe() 3008 EVP_PKEY *ckey = NULL; in tls_process_cke_ecdhe() local 3035 ckey = EVP_PKEY_new(); in tls_process_cke_ecdhe() 3036 if (ckey in tls_process_cke_ecdhe() [all...] |
H A D | extensions_srvr.c | 1595 EVP_PKEY *ckey = s->s3.peer_tmp, *skey = NULL; in tls_construct_stoc_key_share() local 1599 if (ckey != NULL) { in tls_construct_stoc_key_share() 1614 if (ckey == NULL) { in tls_construct_stoc_key_share() 1644 skey = ssl_generate_pkey(s, ckey); in tls_construct_stoc_key_share() 1671 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_construct_stoc_key_share() 1686 if (ssl_encapsulate(s, ckey, &ct, &ctlen, 0) == 0) { in tls_construct_stoc_key_share()
|
H A D | extensions_clnt.c | 1768 EVP_PKEY *ckey = s->s3.tmp.pkey, *skey = NULL; in tls_parse_stoc_key_share() local 1772 if (ckey == NULL || s->s3.peer_tmp != NULL) { in tls_parse_stoc_key_share() 1865 if (skey == NULL || EVP_PKEY_copy_parameters(skey, ckey) <= 0) { in tls_parse_stoc_key_share() 1878 if (ssl_derive(s, ckey, skey, 1) == 0) { in tls_parse_stoc_key_share() 1889 if (ssl_decapsulate(s, ckey, ct, ctlen, 1) == 0) { in tls_parse_stoc_key_share()
|
/third_party/node/deps/openssl/openssl/crypto/ec/ |
H A D | ec_kmeth.c | 225 int (*ckey)(unsigned char **psec, in EC_KEY_METHOD_set_compute_key() 230 meth->compute_key = ckey; in EC_KEY_METHOD_set_compute_key()
|
/third_party/openssl/crypto/ec/ |
H A D | ec_kmeth.c | 225 int (*ckey)(unsigned char **psec, in EC_KEY_METHOD_set_compute_key() 230 meth->compute_key = ckey; in EC_KEY_METHOD_set_compute_key()
|
/third_party/icu/icu4c/source/common/ |
H A D | unifiedcache.cpp | 50 const CacheKeyBase *ckey = (const CacheKeyBase *) key.pointer; in ucache_hashKeys() local 51 return ckey->hashCode(); in ucache_hashKeys()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | unifiedcache.cpp | 50 const CacheKeyBase *ckey = (const CacheKeyBase *) key.pointer; in ucache_hashKeys() local 51 return ckey->hashCode(); in ucache_hashKeys()
|
/third_party/python/Lib/test/ |
H A D | test_winreg.py | 193 access=KEY_ALL_ACCESS) as ckey: 194 self.assertTrue(ckey.handle != 0)
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | unifiedcache.cpp | 50 const CacheKeyBase *ckey = (const CacheKeyBase *) key.pointer; in ucache_hashKeys() local 51 return ckey->hashCode(); in ucache_hashKeys()
|
/third_party/node/lib/ |
H A D | zlib.js | 109 for (const ckey of ObjectKeys(codes)) { 110 codes[codes[ckey]] = ckey;
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | ec.h | 1477 int (*ckey)(unsigned char **psec, size_t *pseclen,
|
/third_party/openssl/include/openssl/ |
H A D | ec.h | 1477 int (*ckey)(unsigned char **psec, size_t *pseclen,
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | ec.h | 1299 int (*ckey)(unsigned char **psec,
|
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
H A D | sparcv9_modes.pl | 951 call _${alg}${bits}_load_${dir}ckey
|
/third_party/openssl/crypto/perlasm/ |
H A D | sparcv9_modes.pl | 951 call _${alg}${bits}_load_${dir}ckey
|