/third_party/node/deps/icu-small/source/common/ |
H A D | static_unicode_sets.cpp | 226 Key unisets::chooseFrom(UnicodeString str, Key key1, Key key2) { in chooseFrom() argument 227 return get(key1)->contains(str) ? key1 : chooseFrom(str, key2); in chooseFrom()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | scriptset.cpp | 282 uhash_equalsScriptSet(const UElement key1, const UElement key2) { in uhash_equalsScriptSet() argument 284 icu::ScriptSet *s2 = static_cast<icu::ScriptSet *>(key2.pointer); in uhash_equalsScriptSet()
|
/third_party/node/deps/v8/src/objects/ |
H A D | transitions.h | 370 PropertyAttributes attributes1, Name key2, 374 // Compares keys, returns -1 if key1 is "less" than key2, 375 // 0 if key1 equal to key2 and 1 otherwise. 376 static inline int CompareNames(Name key1, uint32_t hash1, Name key2,
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime.cc | 63 static bool Match(void* key1, void* key2) { in Match() 67 static_cast<IntrinsicFunctionIdentifier*>(key2); in Match()
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_context.c | 185 plb_pp_stream_compare(const void *key1, const void *key2) in plb_pp_stream_compare() argument 187 return memcmp(key1, key2, sizeof(struct lima_ctx_plb_pp_stream_key)) == 0; in plb_pp_stream_compare()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_cache.c | 69 int (*compare)(const void *key1, const void *key2); 99 int (*compare)(const void *key1, const void *key2), in util_cache_create() 98 util_cache_create(uint32_t (hash)const void *key), int (*compare)(const void *key1, const void *key2), void (*destroy)(void *key, void *value), uint32_t size) util_cache_create() argument
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | scriptset.cpp | 282 uhash_equalsScriptSet(const UElement key1, const UElement key2) { in uhash_equalsScriptSet() argument 284 icu::ScriptSet *s2 = static_cast<icu::ScriptSet *>(key2.pointer); in uhash_equalsScriptSet()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | static_unicode_sets.cpp | 226 Key unisets::chooseFrom(UnicodeString str, Key key1, Key key2) { in chooseFrom() argument 227 return get(key1)->contains(str) ? key1 : chooseFrom(str, key2); in chooseFrom()
|
/third_party/python/Python/ |
H A D | hashtable.c | 99 _Py_hashtable_compare_direct(const void *key1, const void *key2) in _Py_hashtable_compare_direct() argument 101 return (key1 == key2); in _Py_hashtable_compare_direct()
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_astats.c | 384 uint8_t key2[128]; in set_meta() local 388 snprintf(key2, sizeof(key2), "lavfi.astats.%d.%s", chan, key); in set_meta() 390 snprintf(key2, sizeof(key2), "lavfi.astats.%s", key); in set_meta() 391 av_dict_set(metadata, key2, value, 0); in set_meta()
|
H A D | vf_ssim.c | 87 char key2[128]; in set_meta() local 88 snprintf(key2, sizeof(key2), "%s%c", key, comp); in set_meta() 89 av_dict_set(metadata, key2, value, 0); in set_meta()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | keyofAndIndexedAccess.js | 364 function path<T, K1 extends keyof T, K2 extends keyof T[K1]>(obj: T, key1: K1, key2: K2): T[K1][K2]; 365 function path<T, K1 extends keyof T, K2 extends keyof T[K1], K3 extends keyof T[K1][K2]>(obj: T, key1: K1, key2: K2, key3: K3): T[K1][K2][K3]; 390 const assignTo2 = <T, K1 extends keyof T, K2 extends keyof T[K1]>(object: T, key1: K1, key2: K2) => 391 (value: T[K1][K2]) => object[key1][key2] = value; 968 var assignTo2 = function (object, key1, key2) {
969 return function (value) { return object[key1][key2] = value; };
1256 declare function path<T, K1 extends keyof T, K2 extends keyof T[K1]>(obj: T, key1: K1, key2: K2): T[K1][K2];
1257 declare function path<T, K1 extends keyof T, K2 extends keyof T[K1], K3 extends keyof T[K1][K2]>(obj: T, key1: K1, key2: K2, key3: K3): T[K1][K2][K3];
1267 declare const assignTo2: <T, K1 extends keyof T, K2 extends keyof T[K1]>(object: T, key1: K1, key2: K2) => (value: T[K1][K2]) => T[K1][K2];
|
/kernel/linux/linux-5.10/net/mptcp/ |
H A D | options.c | 545 static u64 add_addr_generate_hmac(u64 key1, u64 key2, u8 addr_id, in add_addr_generate_hmac() argument 556 mptcp_crypto_hmac_sha(key1, key2, msg, 7, hmac); in add_addr_generate_hmac() 562 static u64 add_addr6_generate_hmac(u64 key1, u64 key2, u8 addr_id, in add_addr6_generate_hmac() argument 573 mptcp_crypto_hmac_sha(key1, key2, msg, 19, hmac); in add_addr6_generate_hmac()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | pkey_ctx.rs | 835 let key2 = EcKey::generate(&group).unwrap(); in derive() 836 let key2 = PKey::from_ec_key(key2).unwrap(); in derive() 840 ctx.derive_set_peer(&key2).unwrap(); in derive()
|
/kernel/linux/linux-5.10/security/selinux/ss/ |
H A D | hashtab.h | 22 int (*cmp)(const void *key1, const void *key2);
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | btree-128.h | 88 u64 key1, u64 key2, size_t index);
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | btree-128.h | 88 u64 key1, u64 key2, size_t index);
|
/kernel/linux/linux-6.6/security/selinux/ss/ |
H A D | hashtab.h | 22 int (*cmp)(const void *key1, const void *key2);
|
/kernel/linux/linux-5.10/fs/hmdfs/comm/ |
H A D | connection.c | 312 // init ktls config, use key1/key2 as init write-key of each direction in connection_handshake_init_tls() 314 __u8 key2[HMDFS_KEY_SIZE]; in connection_handshake_init_tls() local 324 update_key(conn_impl->master_key, key2, HKDF_TYPE_KEY_ACCEPTER); in connection_handshake_init_tls() 328 memcpy(conn_impl->recv_key, key2, HMDFS_KEY_SIZE); in connection_handshake_init_tls() 330 memcpy(conn_impl->send_key, key2, HMDFS_KEY_SIZE); in connection_handshake_init_tls() 335 memset(key2, 0, HMDFS_KEY_SIZE); in connection_handshake_init_tls()
|
/kernel/linux/linux-6.6/fs/hmdfs/comm/ |
H A D | connection.c | 312 // init ktls config, use key1/key2 as init write-key of each direction in connection_handshake_init_tls() 314 __u8 key2[HMDFS_KEY_SIZE]; in connection_handshake_init_tls() local 324 update_key(conn_impl->master_key, key2, HKDF_TYPE_KEY_ACCEPTER); in connection_handshake_init_tls() 328 memcpy(conn_impl->recv_key, key2, HMDFS_KEY_SIZE); in connection_handshake_init_tls() 330 memcpy(conn_impl->send_key, key2, HMDFS_KEY_SIZE); in connection_handshake_init_tls() 335 memset(key2, 0, HMDFS_KEY_SIZE); in connection_handshake_init_tls()
|
/kernel/linux/linux-5.10/tools/lib/bpf/ |
H A D | hashmap.h | 44 typedef bool (*hashmap_equal_fn)(const void *key1, const void *key2, void *ctx);
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | hashmap.h | 44 typedef bool (*hashmap_equal_fn)(const void *key1, const void *key2, void *ctx);
|
/kernel/linux/linux-6.6/tools/lib/bpf/ |
H A D | hashmap.h | 44 typedef bool (*hashmap_equal_fn)(long key1, long key2, void *ctx);
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | hashmap.h | 44 typedef bool (*hashmap_equal_fn)(long key1, long key2, void *ctx);
|
/third_party/libbpf/src/ |
H A D | hashmap.h | 44 typedef bool (*hashmap_equal_fn)(long key1, long key2, void *ctx);
|