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

1 2

  /external/libyuv/files/util/
compare.cc 35 uint32 hash2 = 5381; local
45 if (amt2 > 0) hash2 = libyuv::HashDjb2(buf2, amt2, hash2);
54 printf(", hash2 %x", hash2);
  /external/ltrace/
dict.h 38 size_t (*hash2)(size_t); member in struct:dict
42 * size KEY_SIZE and values of the size VALUE_SIZE. HASH1 and HASH2
50 size_t (*hash2)(size_t));
55 #define DICT_INIT(DICTP, KEY_TYPE, VALUE_TYPE, HASH1, EQ, HASH2) \
63 HASH2); \
dict.c 42 size_t (*hash2)(size_t))
53 dict->hash2 = hash2;
109 source->hash1, source->eq, source->hash2);
190 hash2(struct dict *dict))(size_t) function
192 if (dict->hash2 != NULL)
193 return dict->hash2;
221 size_t d = hash2(dict)(pos);
278 dict->hash1, dict->eq, dict->hash2);
  /external/guava/guava/src/com/google/common/hash/
BloomFilterStrategies.java 50 int hash2 = (int) (hash64 >>> 32); local
54 int combinedHash = hash1 + (i * hash2);
69 int hash2 = (int) (hash64 >>> 32); local
72 int combinedHash = hash1 + (i * hash2);
87 * multiplication in the loop and doing a (much simpler) += hash2. We're also changing the
97 long hash2 = upperEight(bytes); local
104 combinedHash += hash2;
115 long hash2 = upperEight(bytes); local
123 combinedHash += hash2;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarCache.java 62 delta = hash2(key);
105 private final int hash2(long key) { method in class:CalendarCache
  /external/v8/src/heap/
store-buffer.cc 559 uintptr_t hash2 = (hash_addr - (hash_addr >> kHashSetLengthLog2)); local
560 hash2 ^= hash2 >> (kHashSetLengthLog2 * 2);
561 hash2 &= (kHashSetLength - 1);
562 if (hash_set_2_[hash2] == int_addr) continue;
565 } else if (hash_set_2_[hash2] == 0) {
566 hash_set_2_[hash2] = int_addr;
571 hash_set_2_[hash2] = 0;
  /external/guava/guava-tests/test/com/google/common/hash/
HashCodeTest.java 172 HashCode hash2 = local
174 assertEquals(hash1, hash2);
205 HashCode hash2 = HashCode.fromString(hash1.toString()); local
206 assertEquals(hash1, hash2);
HashTestUtils.java 263 int hash2 = function.hashInt(key2).asInt(); local
265 same |= ~(hash1 ^ hash2);
267 diff |= (hash1 ^ hash2);
302 int hash2 = function.hashInt(key2).asInt(); local
304 if ((hash1 & (1 << k)) == (hash2 & (1 << k))) {
348 int hash2 = function.hashInt(key2).asInt(); local
352 if ((hash1 ^ hash2) != delta) {
392 int hash2 = function.hashInt(key2).asInt(); local
394 if ((hash1 & (1 << k)) == (hash2 & (1 << k))) {
  /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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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/icu/icu4c/source/test/intltest/
loctest.cpp 576 int32_t hash2 = test2.hashCode(); local
579 test_assert(hash1 == hash2);
581 test_assert(hash2 == hash3);
663 int32_t hash2 = test2.hashCode(); local
666 test_assert(hash1 == hash2);
667 test_assert(hash2 == hash3);
    [all...]
  /external/v8/test/cctest/
test-api.cc 2764 int hash2 = v8::Object::New(isolate)->GetIdentityHash(); local
2805 int hash2 = global_proxy->GetIdentityHash(); local
    [all...]
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /frameworks/data-binding/prebuilds/1.0-rc0/
databinding-studio-bundle.jar 
  /prebuilts/devtools/tools/lib/
guava-17.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/17.0/
guava-17.0.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /prebuilts/tools/common/offline-m2/com/google/guava/guava/17.0/
guava-17.0.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 

Completed in 540 milliseconds

1 2