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

  /external/apache-harmony/math/src/test/java/tests/api/java/math/
BigDecimalTest.java 356 BigDecimal hash2 = new BigDecimal(1.00D); local
358 hash.hashCode() != hash2.hashCode() && !hash.equals(hash2));
359 hash2 = new BigDecimal("1.0");
361 hash.hashCode() != hash2.hashCode() && !hash.equals(hash2));
363 hash2 = new BigDecimal(val, 2);
365 .hashCode() == hash2.hashCode()
366 && hash.equals(hash2));
368 hash2 = new BigDecimal("-1233456.0000")
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebIconDatabase.mm 459 UInt32 hash2;
474 hash2 = len;
476 hash2 = (37 * hash2) ^ s[cnt];
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);
  /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 ||
909 count2 = uhash_count(hash2);
920 * value from hash2. If the hashes are equal then then both hashes should
923 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1));
    [all...]
uhash.h 723 * @param hash2
727 uhash_equals(const UHashtable* hash1, const UHashtable* hash2);
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
TwoKeyHashMap.java 347 int hash2 = (key2 == null ? 0 : key2.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
629 GenerateHash(kModuleBlacklist[i].location, &hash2);
630 hashes += " - " + hash2;
    [all...]
  /external/icu4c/test/intltest/
loctest.cpp 582 int32_t hash2 = test2.hashCode(); local
585 test_assert(hash1 == hash2);
587 test_assert(hash2 == hash3);
669 int32_t hash2 = test2.hashCode(); local
672 test_assert(hash1 == hash2);
673 test_assert(hash2 == hash3);
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_updater_unittest.cc 835 std::string hash2 = ""; local
841 updater.FetchUpdatedExtension(id2, url2, hash2, version2);
    [all...]
  /external/grub/netboot/
tlan.c     [all...]
  /external/v8/test/cctest/
test-api.cc 1650 int hash2 = v8::Object::New()->GetIdentityHash(); local
    [all...]

Completed in 318 milliseconds