Searched defs:hash2 (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/libyuv/util/
H A Dcompare.cc35 uint32 hash2 = 5381; local
45 if (amt2 > 0) hash2 = libyuv::HashDjb2(buf2, amt2, hash2);
54 printf(", hash2 %x", hash2);
/external/libyuv/files/util/
H A Dcompare.cc35 uint32 hash2 = 5381; local
45 if (amt2 > 0) hash2 = libyuv::HashDjb2(buf2, amt2, hash2);
54 printf(", hash2 %x", hash2);
/external/ltrace/
H A Ddict.h38 size_t (*hash2)(size_t); member in struct:dict
50 size_t (*hash2)(size_t));
H A Ddict.c42 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);
38 dict_init(struct dict *dict, size_t key_size, size_t value_size, size_t (*hash1)(const void *), int (*eq)(const void *, const void *), size_t (*hash2)(size_t)) argument
/external/chromium_org/courgette/
H A Ddifference_estimator.cc25 size_t hash2 = *reinterpret_cast<const uint32*>(source + kTupleSize - 4); local
26 size_t hash = ((hash1 * 17 + hash2 * 37) + (hash1 >> 17)) ^ (hash2 >> 23);
/external/chromium_org/third_party/smhasher/src/
H A DKeysetTest.cpp92 uint8_t * hash2 = new uint8_t[hashbytes]; local
119 hash(key2,len,0,hash2);
121 if(memcmp(hash1,hash2,hashbytes) == 0)
129 hash(key2,len,0,hash2);
131 if(memcmp(hash1,hash2,hashbytes) != 0)
153 delete [] hash2;
H A DSpooky.cpp21 uint64 *hash2)
42 uint64 b=*hash2;
116 *hash2 = b;
127 uint64 *hash2)
131 Short(message, length, hash1, hash2);
147 h1=h4=h7=h10 = *hash2;
182 *hash2 = h1;
302 void SpookyHash::Final(uint64 *hash1, uint64 *hash2) argument
307 Short( m_data, m_length, hash1, hash2);
345 *hash2
17 Short( const void *message, size_t length, uint64 *hash1, uint64 *hash2) argument
123 Hash128( const void *message, size_t length, uint64 *hash1, uint64 *hash2) argument
[all...]
H A DSpooky.h56 uint64 *hash2); // in/out: in seed 2, out hash value 2
79 uint64 hash1 = seed, hash2 = seed; local
80 Hash128(message, length, &hash1, &hash2);
109 uint64 *hash2); // out only: second 64 bits of hash value.
267 uint64 *hash2);
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_index.cc58 bool operator()(uint64 hash1, uint64 hash2);
67 bool CompareHashesForTimestamp::operator()(uint64 hash1, uint64 hash2) { argument
70 EntrySet::const_iterator it2 = entry_set_.find(hash2);
/external/chromium_org/v8/src/heap/
H A Dstore-buffer.cc559 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/chromium_org/chrome/browser/
H A Denumerate_modules_model_win.cc684 std::string hash1, hash2, hash3; local
687 GenerateHash(kModuleBlacklist[i].location, &hash2);
688 hashes += " - " + hash2;
/external/chromium_org/third_party/icu/source/common/
H A Duhash.c855 uhash_equals(const UHashtable* hash1, const UHashtable* hash2){ argument
858 if(hash1==hash2){
870 if (hash1==NULL || hash2==NULL ||
871 hash1->keyComparator != hash2->keyComparator ||
872 hash1->valueComparator != hash2->valueComparator ||
883 count2 = uhash_count(hash2);
894 * value from hash2. If the hashes are equal then then both hashes should
897 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1));
/external/icu/icu4c/source/common/
H A Duhash.c855 uhash_equals(const UHashtable* hash1, const UHashtable* hash2){ argument
858 if(hash1==hash2){
870 if (hash1==NULL || hash2==NULL ||
871 hash1->keyComparator != hash2->keyComparator ||
872 hash1->valueComparator != hash2->valueComparator ||
883 count2 = uhash_count(hash2);
894 * value from hash2. If the hashes are equal then then both hashes should
897 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1));
/external/chromium_org/chrome/browser/extensions/updater/
H A Dextension_updater_unittest.cc1417 std::string hash2; local
1429 id2, url2, hash2, version2, requests));
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dloctest.cpp583 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);
/external/icu/icu4c/source/test/intltest/
H A Dloctest.cpp583 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);
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc2764 int hash2 = v8::Object::New(isolate)->GetIdentityHash(); local
2768 CHECK_NE(hash, hash2);
2805 int hash2 = global_proxy->GetIdentityHash(); local
2806 CHECK_EQ(hash1, hash2);
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 321 milliseconds

12