Home
last modified time | relevance | path

Searched refs:hash2 (Results 1 – 25 of 30) sorted by relevance

12

/external/guava/guava/src/com/google/common/hash/
DBloomFilterStrategies.java50 int hash2 = (int) (hash64 >>> 32); in MURMUR128_MITZ_32() local
54 int combinedHash = hash1 + (i * hash2); in MURMUR128_MITZ_32()
69 int hash2 = (int) (hash64 >>> 32); in MURMUR128_MITZ_32() local
72 int combinedHash = hash1 + (i * hash2); in MURMUR128_MITZ_32()
97 long hash2 = upperEight(bytes); in MURMUR128_MITZ_64() local
104 combinedHash += hash2; in MURMUR128_MITZ_64()
115 long hash2 = upperEight(bytes); in MURMUR128_MITZ_64() local
123 combinedHash += hash2; in MURMUR128_MITZ_64()
/external/libyuv/files/util/
Dcompare.cc35 uint32 hash2 = 5381; in main() local
45 if (amt2 > 0) hash2 = libyuv::HashDjb2(buf2, amt2, hash2); in main()
54 printf(", hash2 %x", hash2); in main()
/external/v8/src/
Dtransitions-inl.h123 uint32_t hash2, PropertyKind kind2, in CompareKeys() argument
125 int cmp = CompareNames(key1, hash1, key2, hash2); in CompareKeys()
133 uint32_t hash2) { in CompareNames() argument
136 return hash1 <= hash2 ? -1 : 1; in CompareNames()
Dtransitions.h295 uint32_t hash2, PropertyKind kind2,
301 uint32_t hash2);
/external/guava/guava-tests/test/com/google/common/hash/
DHashTestUtils.java263 int hash2 = function.hashInt(key2).asInt(); in checkNoFunnels() local
265 same |= ~(hash1 ^ hash2); in checkNoFunnels()
267 diff |= (hash1 ^ hash2); in checkNoFunnels()
302 int hash2 = function.hashInt(key2).asInt(); in checkAvalanche() local
304 if ((hash1 & (1 << k)) == (hash2 & (1 << k))) { in checkAvalanche()
348 int hash2 = function.hashInt(key2).asInt(); in checkNo2BitCharacteristics() local
352 if ((hash1 ^ hash2) != delta) { in checkNo2BitCharacteristics()
392 int hash2 = function.hashInt(key2).asInt(); in check2BitAvalanche() local
394 if ((hash1 & (1 << k)) == (hash2 & (1 << k))) { in check2BitAvalanche()
DHashCodeTest.java174 HashCode hash2 = in testRoundTripHashCodeUsingBaseEncoding() local
176 assertEquals(hash1, hash2); in testRoundTripHashCodeUsingBaseEncoding()
207 HashCode hash2 = HashCode.fromString(hash1.toString()); in testRoundTripHashCodeUsingFromString() local
208 assertEquals(hash1, hash2); in testRoundTripHashCodeUsingFromString()
/external/ltrace/
Ddict.c42 size_t (*hash2)(size_t)) in dict_init()
53 dict->hash2 = hash2; in dict_init()
109 source->hash1, source->eq, source->hash2); in dict_clone()
190 hash2(struct dict *dict))(size_t) in hash2() function
192 if (dict->hash2 != NULL) in hash2()
193 return dict->hash2; in hash2()
221 size_t d = hash2(dict)(pos); in find_slot()
278 dict->hash1, dict->eq, dict->hash2); in rehash()
Ddict.h38 size_t (*hash2)(size_t); member
50 size_t (*hash2)(size_t));
/external/v8/src/heap/
Dstore-buffer.cc551 uintptr_t hash2 = (hash_addr - (hash_addr >> kHashSetLengthLog2)); in Compact() local
552 hash2 ^= hash2 >> (kHashSetLengthLog2 * 2); in Compact()
553 hash2 &= (kHashSetLength - 1); in Compact()
554 if (hash_set_2_[hash2] == int_addr) continue; in Compact()
557 } else if (hash_set_2_[hash2] == 0) { in Compact()
558 hash_set_2_[hash2] = int_addr; in Compact()
563 hash_set_2_[hash2] = 0; in Compact()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DCalendarCache.java62 delta = hash2(key); in findIndex()
105 private final int hash2(long key) { in hash2() method in CalendarCache
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DCalendarCache.java64 delta = hash2(key); in findIndex()
107 private final int hash2(long key) { in hash2() method in CalendarCache
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
DIntSet.java106 int index2 = hash2(key); in add()
184 int index2 = hash2(key); in addResize()
237 index2 = hash2(evictedKey); in push()
291 index = hash2(key); in remove()
362 index = hash2(key); in contains()
418 private int hash2 (int h) { in hash2() method in IntSet
DIntFloatMap.java119 int index2 = hash2(key); in put()
189 int index2 = hash2(key); in putResize()
252 index2 = hash2(evictedKey); in push()
302 index = hash2(key); in get()
335 index = hash2(key); in getAndIncrement()
374 index = hash2(key); in remove()
472 index = hash2(key); in containsKey()
533 private int hash2 (int h) { in hash2() method in IntFloatMap
DObjectFloatMap.java106 int index2 = hash2(hashCode); in put()
171 int index2 = hash2(hashCode); in putResize()
235 index2 = hash2(hashCode); in push()
282 index = hash2(hashCode); in get()
304 index = hash2(hashCode); in getAndIncrement()
337 index = hash2(hashCode); in remove()
422 index = hash2(hashCode); in containsKey()
482 private int hash2 (int h) { in hash2() method in ObjectFloatMap
DObjectIntMap.java106 int index2 = hash2(hashCode); in put()
171 int index2 = hash2(hashCode); in putResize()
235 index2 = hash2(hashCode); in push()
282 index = hash2(hashCode); in get()
304 index = hash2(hashCode); in getAndIncrement()
337 index = hash2(hashCode); in remove()
423 index = hash2(hashCode); in containsKey()
483 private int hash2 (int h) { in hash2() method in ObjectIntMap
DIntIntMap.java117 int index2 = hash2(key); in put()
187 int index2 = hash2(key); in putResize()
250 index2 = hash2(evictedKey); in push()
300 index = hash2(key); in get()
333 index = hash2(key); in getAndIncrement()
372 index = hash2(key); in remove()
459 index = hash2(key); in containsKey()
519 private int hash2 (int h) { in hash2() method in IntIntMap
DObjectSet.java100 int index2 = hash2(hashCode); in add()
173 int index2 = hash2(hashCode); in addResize()
226 index2 = hash2(hashCode); in push()
274 index = hash2(hashCode); in remove()
343 index = hash2(hashCode); in contains()
398 private int hash2 (int h) { in hash2() method in ObjectSet
DIdentityMap.java108 int index2 = hash2(hashCode); in put()
172 int index2 = hash2(hashCode); in putResize()
236 index2 = hash2(hashCode); in push()
282 index = hash2(hashCode); in get()
295 index = hash2(hashCode); in get()
322 index = hash2(hashCode); in remove()
424 index = hash2(hashCode); in containsKey()
494 private int hash2 (int h) { in hash2() method in IdentityMap
DIntMap.java120 int index2 = hash2(key); in put()
194 int index2 = hash2(key); in putResize()
258 index2 = hash2(evictedKey); in push()
307 index = hash2(key); in get()
323 index = hash2(key); in get()
358 index = hash2(key); in remove()
467 index = hash2(key); in containsKey()
540 private int hash2 (int h) { in hash2() method in IntMap
DObjectMap.java112 int index2 = hash2(hashCode); in put_internal()
182 int index2 = hash2(hashCode); in putResize()
246 index2 = hash2(hashCode); in push()
292 index = hash2(hashCode); in get()
313 index = hash2(hashCode); in get()
340 index = hash2(hashCode); in remove()
442 index = hash2(hashCode); in containsKey()
512 private int hash2 (int h) { in hash2() method in ObjectMap
DLongMap.java120 int index2 = hash2(key); in put()
194 int index2 = hash2(key); in putResize()
257 index2 = hash2(evictedKey); in push()
306 index = hash2(key); in get()
322 index = hash2(key); in get()
357 index = hash2(key); in remove()
464 index = hash2(key); in containsKey()
537 private int hash2 (long h) { in hash2() method in LongMap
/external/autotest/client/site_tests/login_OwnershipNotRetaken/
Dlogin_OwnershipNotRetaken.py57 hash2 = hashlib.md5(key2.read())
59 if hash.hexdigest() != hash2.hexdigest():
/external/icu/icu4c/source/common/
Duhash.c855 uhash_equals(const UHashtable* hash1, const UHashtable* hash2){ in uhash_equals() argument
858 if(hash1==hash2){ in uhash_equals()
870 if (hash1==NULL || hash2==NULL || in uhash_equals()
871 hash1->keyComparator != hash2->keyComparator || in uhash_equals()
872 hash1->valueComparator != hash2->valueComparator || in uhash_equals()
883 count2 = uhash_count(hash2); in uhash_equals()
897 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1)); in uhash_equals()
/external/giflib/
Dquantize.c323 int hash2 = entry2->RGB[SortRGBAxis] * 256 * 256 in SortCmpRtn() local
327 return hash1 - hash2; in SortCmpRtn()
/external/elfutils/src/
Delfcmp.c840 const Hash_Word *const hash2 = data2->d_buf; \ in hash_content_equivalent()
844 || hash2[0] != nbucket || hash2[1] != nchain) \ in hash_content_equivalent()
849 const Hash_Word *const bucket2 = &hash2[2]; \ in hash_content_equivalent()

12