Searched refs:hash1 (Results 1 - 14 of 14) sorted by relevance

/external/guava/guava/src/com/google/common/hash/
H A DBloomFilterStrategies.java30 int hash1 = (int) hash64;
33 int nextHash = hash1 + i * hash2;
45 int hash1 = (int) hash64;
48 int nextHash = hash1 + i * hash2;
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
H A DSHA1ImplTest.java69 int[] hash1 = {0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0 };
78 alternateHash(words, hash1);
90 assertTrue("false1: k=" + k + " hash1[k]=" + Integer.toHexString(hash1[k]),
91 hash[k] == hash1[k] );
/external/webkit/Source/WebKit/mac/Misc/
H A DWebIconDatabase.mm458 UInt32 hash1;
467 hash1 = len;
469 hash1 += (hash1 << 8) + s[cnt];
471 hash1 += (hash1 << (len & 31));
480 snprintf(buffer, UniqueFilePathSize, "%.2u/%.2u/%.10u-%.10u.cache", ((hash1 & 0xff) >> 4), ((hash2 & 0xff) >> 4), hash1, hash2);
482 snprintf(buffer, UniqueFilePathSize, "%.2lu/%.2lu/%.10lu-%.10lu.cache", ((hash1 & 0xff) >> 4), ((hash2 & 0xff) >> 4), hash1, hash
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Ddirhash.c122 __u32 hash, hash0 = 0x12a3fe2d, hash1 = 0x37abe8f9; local
132 hash = hash1 + (hash0 ^ (c * 7152373));
135 hash1 = hash0;
/external/icu4c/common/
H A Duhash.c885 uhash_equals(const UHashtable* hash1, const UHashtable* hash2){ argument
889 if(hash1==hash2){
901 if (hash1==NULL || hash2==NULL ||
902 hash1->keyComparator != hash2->keyComparator ||
903 hash1->valueComparator != hash2->valueComparator ||
904 hash1->valueComparator == NULL)
913 count1 = uhash_count(hash1);
921 const UHashElement* elem1 = uhash_nextElement(hash1, &pos);
924 /* here the keys are not compared, instead the key form hash1 is used to fetch
930 if(hash1
[all...]
H A Duhash.h725 * @param hash1
730 uhash_equals(const UHashtable* hash1, const UHashtable* hash2);
/external/elfutils/src/
H A Delfcmp.c681 const Hash_Word *const hash1 = data1->d_buf; \
683 const size_t nbucket = hash1[0]; \
684 const size_t nchain = hash1[1]; \
685 if (data1->d_size != (2 + nbucket + nchain) * sizeof hash1[0] \
689 const Hash_Word *const bucket1 = &hash1[2]; \
/external/v8/src/
H A Dstore-buffer.cc688 int hash1 = local
690 if (hash_set_1_[hash1] == int_addr) continue;
695 if (hash_set_1_[hash1] == 0) {
696 hash_set_1_[hash1] = int_addr;
702 hash_set_1_[hash1] = int_addr;
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DInputManager.java307 int hash1 = JoyAxisTrigger.joyAxisHash(joyId, axis, true);
310 Float val1 = axisValues.get(hash1);
314 invokeActions(hash1, false);
320 axisValues.remove(hash1);
/external/chromium/chrome/browser/
H A Denumerate_modules_model_win.cc626 std::string hash1, hash2, hash3; local
627 GenerateHash(kModuleBlacklist[i].filename, &hash1);
628 hashes += " - " + hash1;
/external/icu4c/test/intltest/
H A Dloctest.cpp582 int32_t hash1 = test1.hashCode(); local
586 test_assert(hash1 == hash2);
587 test_assert(hash1 == hash3);
669 int32_t hash1 = test1.hashCode(); local
673 test_assert(hash1 == hash2);
675 test_assert(hash3 == hash1);
/external/chromium/chrome/browser/extensions/
H A Dextension_updater_unittest.cc834 std::string hash1 = ""; local
840 updater.FetchUpdatedExtension(id1, url1, hash1, version1);
/external/grub/netboot/
H A Dtlan.c2681 u32 hash1 = 0;
2705 hash1 |= ( 1 << offset );
2713 TLan_DioWrite32( dev->base_addr, TLAN_HASH_1, hash1 );
/external/v8/test/cctest/
H A Dtest-api.cc2005 int hash1 = obj->GetIdentityHash(); local
2006 CHECK_EQ(hash, hash1);

Completed in 283 milliseconds