HomeSort by relevance Sort by last modified time
    Searched refs:hash1 (Results 1 - 11 of 11) sorted by null

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
SHA1ImplTest.java 69 int[] hash1 = {0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0 }; local
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/
WebIconDatabase.mm 458 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, hash2)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
dirhash.c 122 __u32 hash, hash0 = 0x12a3fe2d, hash1 = 0x37abe8f9; local
132 hash = hash1 + (hash0 ^ (c * 7152373));
135 hash1 = hash0;
  /external/icu4c/common/
uhash.c 880 uhash_equals(const UHashtable* hash1, const UHashtable* hash2){
884 if(hash1==hash2){
896 if (hash1==NULL || hash2==NULL ||
897 hash1->keyComparator != hash2->keyComparator ||
898 hash1->valueComparator != hash2->valueComparator ||
899 hash1->valueComparator == NULL)
908 count1 = uhash_count(hash1);
916 const UHashElement* elem1 = uhash_nextElement(hash1, &pos);
919 /* here the keys are not compared, instead the key form hash1 is used to fetch
925 if(hash1->valueComparator(val1, val2)==FALSE)
    [all...]
uhash.h 722 * @param hash1
727 uhash_equals(const UHashtable* hash1, const UHashtable* hash2);
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
TwoKeyHashMap.java 346 int hash1 = (key1 == null ? 0 : key1.hashCode()); local
348 return (hash1 + hash2) ^ (value == null ? 0 : value.hashCode());
  /external/chromium/chrome/browser/
enumerate_modules_model_win.cc 626 std::string hash1, hash2, hash3; local
627 GenerateHash(kModuleBlacklist[i].filename, &hash1);
628 hashes += " - " + hash1;
    [all...]
  /external/icu4c/test/intltest/
loctest.cpp 581 int32_t hash1 = test1.hashCode(); local
585 test_assert(hash1 == hash2);
586 test_assert(hash1 == hash3);
668 int32_t hash1 = test1.hashCode(); local
672 test_assert(hash1 == hash2);
674 test_assert(hash3 == hash1);
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_updater_unittest.cc 834 std::string hash1 = ""; local
840 updater.FetchUpdatedExtension(id1, url1, hash1, version1);
    [all...]
  /external/grub/netboot/
tlan.c     [all...]
  /external/v8/test/cctest/
test-api.cc 1648 int hash1 = obj->GetIdentityHash(); local
    [all...]

Completed in 484 milliseconds