HomeSort by relevance Sort by last modified time
    Searched full:hash (Results 501 - 525 of 8562) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/lib/
libthread_db.so 
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/lib/
libdl.so 
liblog.so 
libthread_db.so 
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/lib/
libdl.so 
liblog.so 
libthread_db.so 
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/lib/
libdl.so 
libjnigraphics.so 
liblog.so 
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/lib/
libdl.so 
liblog.so 
  /system/core/libutils/
BasicHashtable.cpp 113 ssize_t BasicHashtableImpl::find(ssize_t index, hash_t hash,
119 hash = trimHash(hash);
121 index = chainStart(hash, mBucketCount);
135 size_t inc = chainIncrement(hash, mBucketCount);
141 if ((bucket.cookie & Bucket::HASH_MASK) == hash
152 size_t BasicHashtableImpl::add(hash_t hash, const void* entry) {
159 hash = trimHash(hash);
161 size_t index = chainStart(hash, mBucketCount)
217 hash_t hash = fromBucket.cookie & Bucket::HASH_MASK; local
    [all...]
  /external/chromium_org/content/test/data/indexeddb/
bug_90635.js 7 if (document.location.hash === '#part1') {
9 } else if (document.location.hash === '#part2') {
12 result('fail - unexpected hash');
version_change_blocked.js 7 if (document.location.hash === '#tab1') {
9 } else if (document.location.hash === '#tab2') {
12 result('fail - unexpected hash');
  /external/chromium_org/net/quic/crypto/
common_cert_set.h 31 // set identified by |hash|. If no such certificate is known, an empty
33 virtual base::StringPiece GetCert(uint64 hash, uint32 index) const = 0;
36 // identified by |common_set_hashes|. On success it puts the hash of the
null_encrypter.cc 29 uint128 hash = QuicUtils::FNV1a_128_Hash(buffer.data(), buffer.length()); local
30 QuicUtils::SerializeUint128(hash, output);
31 memcpy(output + sizeof(hash), plaintext.data(), plaintext.size());
  /external/chromium_org/third_party/leveldatabase/src/util/
hash.cc 7 #include "util/hash.h"
18 uint32_t Hash(const char* data, size_t n, uint32_t seed) {
19 // Similar to murmur hash
  /external/chromium_org/third_party/lzma_sdk/
LzFind.c 138 p->hash = 0;
153 alloc->Free(alloc, p->hash);
154 p->hash = 0;
231 if (p->hash != 0 && prevSize == newSize)
234 p->hash = AllocRefs(newSize, alloc);
235 if (p->hash != 0)
237 p->son = p->hash + p->hashSizeSum;
275 p->hash[i] = kEmptyHashValue;
307 MatchFinder_Normalize3(subValue, p->hash, p->hashSizeSum + p->numSons);
489 curMatch = p->hash[hashValue]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
hash_table.c 26 * \brief Implementation of a generic, opaque hash table data type.
41 hash_func_t hash; member in struct:hash_table
57 hash_table_ctor(unsigned num_buckets, hash_func_t hash,
71 ht->hash = hash;
114 const unsigned hash_value = (*ht->hash)(key);
140 const unsigned hash_value = (*ht->hash)(key);
155 const unsigned hash_value = (*ht->hash)(key);
212 unsigned hash = 5381; local
216 hash = (hash * 33) + *str
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzFind.c 139 p->hash = 0;
154 alloc->Free(alloc, p->hash);
155 p->hash = 0;
232 if (p->hash != 0 && prevSize == newSize)
235 p->hash = AllocRefs(newSize, alloc);
236 if (p->hash != 0)
238 p->son = p->hash + p->hashSizeSum;
276 p->hash[i] = kEmptyHashValue;
308 MatchFinder_Normalize3(subValue, p->hash, p->hashSizeSum + p->numSons);
490 curMatch = p->hash[hashValue]
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrTHashCache.h 46 T* removeAt(int index, uint32_t hash);
69 static unsigned hash2Index(uint32_t hash) {
70 hash ^= hash >> 16;
72 hash ^= hash >> 8;
74 return hash & kHashMask;
154 // update the hash
173 // update our hash table (overwrites any dupe's position in the hash)
    [all...]
  /external/clang/test/Modules/
fatal-module-loader-error.m 4 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t %s -fdisable-module-hash -F %S/Inputs -verify
5 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t %s -fdisable-module-hash -F %S/Inputs -DIMPLICIT -verify
25 // RUN: %s -Xclang -fdisable-module-hash -F %S/Inputs 2>&1 | FileCheck %s
global_index.m 3 // RUN: %clang_cc1 -Wauto-import -fmodules-cache-path=%t -fdisable-module-hash -fmodules -fno-modules-global-index -F %S/Inputs %s -verify
6 // RUN: %clang_cc1 -Wauto-import -fmodules-cache-path=%t -fdisable-module-hash -fmodules -F %S/Inputs %s -verify
9 // RUN: %clang_cc1 -Wauto-import -fmodules-cache-path=%t -fdisable-module-hash -fmodules -F %S/Inputs %s -verify -print-stats 2>&1 | FileCheck %s
load_failure.c 10 // RUN: %clang_cc1 -fmodules -x objective-c++ -fmodules-cache-path=%t -fdisable-module-hash -emit-module -fmodule-name=load_failure %S/Inputs/module.map
11 // RUN: not %clang_cc1 -fmodules -x objective-c -fmodules-cache-path=%t -fdisable-module-hash %s -DNONEXISTENT 2>&1 | FileCheck -check-prefix=CHECK-NONEXISTENT %s
14 // RUN: not %clang_cc1 -fmodules -x objective-c -fmodules-cache-path=%t -fdisable-module-hash %s -DFAILURE 2> %t.out

Completed in 644 milliseconds

<<21222324252627282930>>