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

  /external/guava/guava/src/com/google/common/hash/
BloomFilterStrategies.java 31 int hash2 = (int) (hash64 >>> 32); local
33 int nextHash = hash1 + i * hash2;
46 int hash2 = (int) (hash64 >>> 32); local
48 int nextHash = hash1 + i * hash2;
  /external/v8/src/
store-buffer.cc 691 uintptr_t hash2 = (int_addr - (int_addr >> kHashSetLengthLog2)); local
692 hash2 ^= hash2 >> (kHashSetLengthLog2 * 2);
693 hash2 &= (kHashSetLength - 1);
694 if (hash_set_2_[hash2] == int_addr) continue;
697 } else if (hash_set_2_[hash2] == 0) {
698 hash_set_2_[hash2] = int_addr;
703 hash_set_2_[hash2] = 0;
  /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/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/chromium/chrome/browser/extensions/
extension_updater_unittest.cc 835 std::string hash2 = ""; local
841 updater.FetchUpdatedExtension(id2, url2, hash2, version2);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
InputManager.java 308 int hash2 = JoyAxisTrigger.joyAxisHash(joyId, axis, false); local
311 Float val2 = axisValues.get(hash2);
317 invokeActions(hash2, false);
321 axisValues.remove(hash2);
    [all...]
  /external/icu4c/test/intltest/
loctest.cpp 583 int32_t hash2 = test2.hashCode(); local
586 test_assert(hash1 == hash2);
588 test_assert(hash2 == hash3);
670 int32_t hash2 = test2.hashCode(); local
673 test_assert(hash1 == hash2);
674 test_assert(hash2 == hash3);
    [all...]
  /external/v8/test/cctest/
test-api.cc 2007 int hash2 = v8::Object::New()->GetIdentityHash(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 502 milliseconds