/third_party/node/test/pummel/ |
H A D | test-crypto-dh-hash.js | 55 const hash2 = crypto.createHash('sha1') 57 assert.strictEqual(hash1, hash2);
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | CalendarCache.java | 64 delta = hash2(key); in findIndex() 107 private final int hash2(long key) { in hash2() method in CalendarCache
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | CalendarCache.java | 66 delta = hash2(key); in findIndex() 109 private final int hash2(long key) { in hash2() method in CalendarCache
|
/third_party/icu/icu4c/source/common/ |
H A D | uhash.cpp | 948 uhash_equals(const UHashtable* hash1, const UHashtable* hash2){ in uhash_equals() argument 951 if(hash1==hash2){ in uhash_equals() 963 if (hash1==NULL || hash2==NULL || in uhash_equals() 964 hash1->keyComparator != hash2->keyComparator || in uhash_equals() 965 hash1->valueComparator != hash2->valueComparator || in uhash_equals() 976 count2 = uhash_count(hash2); in uhash_equals() 987 * value from hash2. If the hashes are equal then then both hashes should in uhash_equals() 990 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1)); in uhash_equals()
|
H A D | uhash.h | 785 * @param hash2 789 uhash_equals(const UHashtable* hash1, const UHashtable* hash2);
|
/third_party/node/deps/icu-small/source/common/ |
H A D | uhash.cpp | 948 uhash_equals(const UHashtable* hash1, const UHashtable* hash2){ in uhash_equals() argument 951 if(hash1==hash2){ in uhash_equals() 963 if (hash1==nullptr || hash2==nullptr || in uhash_equals() 964 hash1->keyComparator != hash2->keyComparator || in uhash_equals() 965 hash1->valueComparator != hash2->valueComparator || in uhash_equals() 976 count2 = uhash_count(hash2); in uhash_equals() 987 * value from hash2. If the hashes are equal then then both hashes should in uhash_equals() 990 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1)); in uhash_equals()
|
H A D | uhash.h | 785 * @param hash2 789 uhash_equals(const UHashtable* hash1, const UHashtable* hash2);
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | uhash.cpp | 948 uhash_equals(const UHashtable* hash1, const UHashtable* hash2){ in uhash_equals() argument 951 if(hash1==hash2){ in uhash_equals() 963 if (hash1==NULL || hash2==NULL || in uhash_equals() 964 hash1->keyComparator != hash2->keyComparator || in uhash_equals() 965 hash1->valueComparator != hash2->valueComparator || in uhash_equals() 976 count2 = uhash_count(hash2); in uhash_equals() 987 * value from hash2. If the hashes are equal then then both hashes should in uhash_equals() 990 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1)); in uhash_equals()
|
H A D | uhash.h | 785 * @param hash2 789 uhash_equals(const UHashtable* hash1, const UHashtable* hash2);
|
/third_party/vk-gl-cts/external/amber/src/src/dawn/ |
H A D | pipeline_info.h | 37 auto hash2 = std::hash<T2>{}(p.second); in operator ()() local 38 return hash1 ^ hash2; in operator ()()
|
/third_party/node/deps/v8/src/objects/ |
H A D | transitions-inl.h | 282 uint32_t hash2, PropertyKind kind2, in CompareKeys() 284 int cmp = CompareNames(key1, hash1, key2, hash2); in CompareKeys() 291 uint32_t hash2) { in CompareNames() 294 return hash1 <= hash2 ? -1 : 1; in CompareNames() 280 CompareKeys(Name key1, uint32_t hash1, PropertyKind kind1, PropertyAttributes attributes1, Name key2, uint32_t hash2, PropertyKind kind2, PropertyAttributes attributes2) CompareKeys() argument 290 CompareNames(Name key1, uint32_t hash1, Name key2, uint32_t hash2) CompareNames() argument
|
H A D | transitions.h | 371 uint32_t hash2, PropertyKind kind2, 377 uint32_t hash2);
|
H A D | keys.cc | 1172 bool operator()(uint32_t hash1, uint32_t hash2, const Handle<Name>& key1, in operator ()() argument
|
/third_party/node/deps/v8/src/compiler/ |
H A D | refs-map.h | 20 bool operator()(uint32_t hash1, uint32_t hash2, const Address& key1, in operator ()() argument
|
/third_party/elfutils/src/ |
H A D | elfcmp.c | 841 const Hash_Word *const hash2 = data2->d_buf; \ in hash_content_equivalent() 845 || hash2[0] != nbucket || hash2[1] != nchain) \ in hash_content_equivalent() 850 const Hash_Word *const bucket2 = &hash2[2]; \ in hash_content_equivalent()
|
/third_party/node/deps/v8/src/base/ |
H A D | hashmap.h | 440 bool operator()(uint32_t hash1, uint32_t hash2, const Key& key1, in operator ()() 442 return hash1 == hash2 && match_(key1, key2); in operator ()() 486 bool operator()(uint32_t hash1, uint32_t hash2, const Key& key1, in operator ()()
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast-value-factory.h | 217 bool operator()(uint32_t hash1, uint32_t hash2, in operator ()() 220 return hash1 == hash2 && AstRawString::Equal(lookup_key, entry_key); in operator ()()
|
/third_party/skia/tests/ |
H A D | HashTest.cpp | 349 uint32_t hash2 = SkOpts::hash(data2, sizeof(data2), 0); in DEF_TEST() local 350 REPORTER_ASSERT(r, hash1 != hash2); in DEF_TEST()
|
/third_party/python/Modules/_sre/ |
H A D | sre.c | 2703 Py_hash_t hash, hash2; in pattern_hash() local 2710 hash2 = _Py_HashBytes(self->code, sizeof(self->code[0]) * self->codesize); in pattern_hash() 2711 hash ^= hash2; in pattern_hash()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | loctest.cpp | 642 int32_t hash2 = test2.hashCode(); in TestSimpleObjectStuff() local 645 test_assert(hash1 == hash2); in TestSimpleObjectStuff() 647 test_assert(hash2 == hash3); in TestSimpleObjectStuff() 729 int32_t hash2 = test2.hashCode(); in TestPOSIXParsing() local 732 test_assert(hash1 == hash2); in TestPOSIXParsing() 733 test_assert(hash2 == hash3); in TestPOSIXParsing()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |