Home
last modified time | relevance | path

Searched refs:key2 (Results 326 - 350 of 448) sorted by relevance

1...<<1112131415161718

/third_party/openssl/crypto/aes/asm/
H A Daes-s390x.pl1629 # size_t len, const AES_KEY *key1, const AES_KEY *key2,
1637 my $key2="%r6"; # $i2
1823 llgf %r0,240($key2)
1840 la %r1,0($key2) # $key2 is not needed anymore
1896 la $key,0($key2)
1998 # size_t len, const AES_KEY *key1, const AES_KEY *key2,
2026 llgf %r0,240($key2)
2043 la %r1,0($key2) # $key2 i
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/
H A Ddistributeddb_multi_ver_p2p_sync_test.cpp1289 Key key2; in HWTEST_F() local
1291 DistributedDBToolsUnitTest::GetRandomKeyValue(key2, LIMIT_KEY_SIZE); in HWTEST_F()
1293 ASSERT_EQ(g_deviceC->PutData(key2, value2), E_OK); in HWTEST_F()
1309 EXPECT_EQ(GetData(g_kvDelegatePtr, key2, value), E_OK); in HWTEST_F()
1453 * @tc.expected: step7. deviceA has no key1, key2 in HWTEST_F()
H A Ddistributeddb_single_ver_p2p_sync_check_test.cpp1850 Key key2 = {'2'}; in HWTEST_F() local
1852 DBStatus status = g_kvDelegatePtr->Put(key2, value2); in HWTEST_F()
1854 Query query2 = Query::Select().PrefixKey(key2); in HWTEST_F()
1856 [&sendRequestCount, key2, value2, devices, this](const std::map<std::string, DBStatus>& statusMap) { in HWTEST_F()
1867 g_deviceB->GetData(key2, item); in HWTEST_F()
/third_party/python/Python/
H A Dhamt.c628 PyObject *key2, PyObject *val2) in hamt_node_new_bitmap_or_collision()
630 /* Helper method. Creates a new node for key1/val and key2/val2 in hamt_node_new_bitmap_or_collision()
633 If key1 hash is equal to the hash of key2, a Collision node in hamt_node_new_bitmap_or_collision()
655 Py_INCREF(key2); in hamt_node_new_bitmap_or_collision()
656 n->c_array[2] = key2; in hamt_node_new_bitmap_or_collision()
676 n = hamt_node_assoc(n2, shift, key2_hash, key2, val2, &added_leaf); in hamt_node_new_bitmap_or_collision()
706 | key1 | val1 | key2 | val2 | ... | keyN | valN | in hamt_node_bitmap_assoc()
625 hamt_node_new_bitmap_or_collision(uint32_t shift, PyObject *key1, PyObject *val1, int32_t key2_hash, PyObject *key2, PyObject *val2) hamt_node_new_bitmap_or_collision() argument
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DMapForProto2Test.java430 private static <K, V> Map<K, V> newMap(K key1, V value1, K key2, V value2) { in newMap() argument
433 map.put(key2, value2); in newMap()
671 private static <K, V> Map<K, V> mapForValues(K key1, V value1, K key2, V value2) { in mapForValues() argument
674 map.put(key2, value2); in mapForValues()
/third_party/python/Modules/
H A Dposixmodule.c5734 PyObject *key, *val, *key2, *val2, *keyval; in parse_envlist() local
5765 if (!PyUnicode_FSDecoder(key, &key2)) in parse_envlist()
5768 Py_DECREF(key2); in parse_envlist()
5773 if (PyUnicode_GET_LENGTH(key2) == 0 || in parse_envlist()
5774 PyUnicode_FindChar(key2, '=', 1, PyUnicode_GET_LENGTH(key2), 1) != -1) in parse_envlist()
5777 Py_DECREF(key2); in parse_envlist()
5781 keyval = PyUnicode_FromFormat("%U=%U", key2, val2); in parse_envlist()
5783 if (!PyUnicode_FSConverter(key, &key2)) in parse_envlist()
5786 Py_DECREF(key2); in parse_envlist()
[all...]
/kernel/linux/linux-5.10/fs/ubifs/
H A Dtnc.c2904 union ubifs_key key1, key2; in ubifs_tnc_remove_ino() local
2944 highest_ino_key(c, &key2, xattr_inum); in ubifs_tnc_remove_ino()
2945 err = ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino()
2959 highest_ino_key(c, &key2, inum); in ubifs_tnc_remove_ino()
2961 return ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino()
/kernel/linux/linux-6.6/fs/ubifs/
H A Dtnc.c2905 union ubifs_key key1, key2; in ubifs_tnc_remove_ino() local
2945 highest_ino_key(c, &key2, xattr_inum); in ubifs_tnc_remove_ino()
2946 err = ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino()
2960 highest_ino_key(c, &key2, inum); in ubifs_tnc_remove_ino()
2962 return ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino()
/kernel/linux/linux-6.6/drivers/infiniband/hw/mlx5/
H A Dmr.c660 struct mlx5r_cache_rb_key key2) in cache_ent_key_cmp()
664 res = key1.ats - key2.ats; in cache_ent_key_cmp()
668 res = key1.access_mode - key2.access_mode; in cache_ent_key_cmp()
672 res = key1.access_flags - key2.access_flags; in cache_ent_key_cmp()
681 return key1.ndescs - key2.ndescs; in cache_ent_key_cmp()
659 cache_ent_key_cmp(struct mlx5r_cache_rb_key key1, struct mlx5r_cache_rb_key key2) cache_ent_key_cmp() argument
/third_party/python/Lib/
H A Dzipfile.py590 key2 = 878082192
602 nonlocal key0, key1, key2
606 key2 = crc32(key1 >> 24, key2)
616 k = key2 | 2
/third_party/selinux/libsepol/src/
H A Dpolicydb.c856 const struct range_trans *key2 = (const struct range_trans *)k2; in rangetr_cmp() local
859 v = spaceship_cmp(key1->source_type, key2->source_type); in rangetr_cmp()
863 v = spaceship_cmp(key1->target_type, key2->target_type); in rangetr_cmp()
867 v = spaceship_cmp(key1->target_class, key2->target_class); in rangetr_cmp()
1689 hashtab_key_t key2 = strdup((char *)key); in symtab_insert() local
1690 if (!key2) in symtab_insert()
1693 free(key2); in symtab_insert()
1700 hashtab_insert(pol->scope[sym].table, key2, in symtab_insert()
1702 free(key2); in symtab_insert()
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_program.c2818 fs_cache_compare(const void *key1, const void *key2) in fs_cache_compare() argument
2820 return memcmp(key1, key2, sizeof(struct vc4_fs_key)) == 0; in fs_cache_compare()
2824 vs_cache_compare(const void *key1, const void *key2) in vs_cache_compare() argument
2826 return memcmp(key1, key2, sizeof(struct vc4_vs_key)) == 0; in vs_cache_compare()
2840 fs_inputs_compare(const void *key1, const void *key2) in fs_inputs_compare() argument
2843 const struct vc4_fs_inputs *inputs2 = key2; in fs_inputs_compare()
/third_party/mesa3d/src/gallium/frontends/nine/
H A Dnine_ff.c136 static bool nine_ff_vs_key_comp(const void *key1, const void *key2) in nine_ff_vs_key_comp() argument
139 struct nine_ff_vs_key *b = (struct nine_ff_vs_key *)key2; in nine_ff_vs_key_comp()
152 static bool nine_ff_ps_key_comp(const void *key1, const void *key2) in nine_ff_ps_key_comp() argument
155 struct nine_ff_ps_key *b = (struct nine_ff_ps_key *)key2; in nine_ff_ps_key_comp()
163 static bool nine_ff_fvf_key_comp(const void *key1, const void *key2) in nine_ff_fvf_key_comp() argument
165 return *(DWORD *)key1 == *(DWORD *)key2; in nine_ff_fvf_key_comp()
/kernel/linux/linux-5.10/drivers/crypto/cavium/nitrox/
H A Dnitrox_req.h145 u8 key2[64]; member
H A Dnitrox_skcipher.c357 memcpy(fctx->auth.u.key2, (key + keylen), keylen); in nitrox_aes_xts_setkey()
/kernel/linux/linux-5.10/fs/xfs/libxfs/
H A Dxfs_btree.h145 * Difference between key2 and key1 -- positive if key1 > key2,
146 * negative if key1 < key2, and zero if equal.
150 union xfs_btree_key *key2);
/kernel/linux/linux-5.10/net/mptcp/
H A Dprotocol.h434 void mptcp_crypto_hmac_sha(u64 key1, u64 key2, u8 *msg, int len, void *hmac);
/kernel/linux/linux-6.6/drivers/crypto/cavium/nitrox/
H A Dnitrox_req.h145 u8 key2[64]; member
H A Dnitrox_skcipher.c356 memcpy(fctx->auth.u.key2, (key + keylen), keylen); in nitrox_aes_xts_setkey()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dcrypto.h1177 * @key2: Key 2
1180 int crypto_ec_key_cmp(struct crypto_ec_key *key1, struct crypto_ec_key *key2);
/foundation/window/window_manager/window_scene/test/unittest/
H A Dscene_session_test.cpp1420 std::string key2(30, 'a'); in HWTEST_F()
1422 scensession->sessionInfo_.bundleName_ = key2; in HWTEST_F()
1423 scensession->sessionInfo_.moduleName_ = key2; in HWTEST_F()
1424 scensession->sessionInfo_.abilityName_ = key2; in HWTEST_F()
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationMiscTest.java1764 CollationKey key2 = coll.getCollationKey(tokens[j]); in TestVariableTop()
1765 if (key2.compareTo(key1) < 0) { in TestVariableTop()
1768 byte sortorder[] = key2.toByteArray(); in TestVariableTop()
1770 && (key2.toByteArray())[0] > 1) { in TestVariableTop()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationMiscTest.java1767 CollationKey key2 = coll.getCollationKey(tokens[j]); in TestVariableTop()
1768 if (key2.compareTo(key1) < 0) { in TestVariableTop()
1771 byte sortorder[] = key2.toByteArray(); in TestVariableTop()
1773 && (key2.toByteArray())[0] > 1) { in TestVariableTop()
/foundation/systemabilitymgr/safwk/test/services/safwk/unittest/
H A Dlocal_ability_manager_test.cpp443 std::pair<int32_t, int32_t> key2 = std::make_pair(VAILD_SAID, SAID); in HWTEST_F() local
446 LocalAbilityManager::GetInstance().listenerMap_[key2] = in HWTEST_F()
/kernel/linux/linux-5.10/net/openvswitch/
H A Dflow_table.c668 const struct sw_flow_key *key2, in cmp_key()
672 const long *cp2 = (const long *)((const u8 *)key2 + key_start); in cmp_key()
667 cmp_key(const struct sw_flow_key *key1, const struct sw_flow_key *key2, int key_start, int key_end) cmp_key() argument

Completed in 69 milliseconds

1...<<1112131415161718