Searched refs:hash (Results 226 - 250 of 1525) sorted by relevance

1234567891011>>

/external/oprofile/daemon/
H A Dopd_sfile.h35 * cg files are stored in the hash.
38 /** hash value for this sfile */
57 /** hash table link */
58 struct list_head hash; member in struct:sfile
67 /** hash table of opened cg sample files */
75 /** next in the hash slot */
76 struct list_head hash; member in struct:cg_entry
/external/qemu/android/utils/
H A Drefset.c20 uint32_t hash; local
22 hash = (uint32_t)(ptrdiff_t)item >> 2;
24 hash ^= ((uint64_t)(ptrdiff_t)item >> 32);
26 return hash;
32 uint32_t hash = _arefSet_hashItem(item); local
33 unsigned index = hash & (s->max_buckets-1);
50 uint32_t hash = _arefSet_hashItem(item); local
51 unsigned index = hash & (s->max_buckets-1);
/external/srtp/
H A DAndroid.mk14 crypto/hash/null_auth.c \
15 crypto/hash/sha1.c \
16 crypto/hash/hmac.c \
17 crypto/hash/auth.c \
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DDigitalSignatureTest.java64 byte[] hash = ds_sign.sign();
79 assertTrue(ds_verify.verifySignature(hash));
96 byte[] hash = ds_sign.sign();
102 assertTrue(ds_verify.verifySignature(hash));
/external/chromium_org/net/quic/crypto/
H A Dcommon_cert_set.h31 // 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
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
H A Dui_unittests.js50 if (window.location.hash) {
51 window.location.hash = '';
67 equal(window.location.hash, '#expected');
69 equal(window.location.hash, '#unexpected');
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
H A Dhistory_unittests.js32 equal(window.location.hash, '#useTestData=true');
58 equal(window.location.hash, '#useTestData=true');
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_cache.h56 * @param hash hash function
62 util_cache_create(uint32_t (*hash)(const void *key),
/external/chromium_org/third_party/smhasher/src/
H A DAvalancheTest.h3 // the hash function's output. Ideally, each output bits should flip 50% of
7 // hash function to fail to create an even, random distribution of hash values.
28 void calcBias ( pfHash hash, std::vector<int> & counts, int reps, Rand & r ) argument
45 hash(&K,keybytes,0,&A);
52 hash(&K,keybytes,0,&B);
69 bool AvalancheTest ( pfHash hash, const int reps ) argument
85 calcBias<keytype,hashtype>(hash,bins,reps,r);
111 void BicTest ( pfHash hash, const int keybit, const int reps, double & maxBias, int & maxA, int & maxB, bool verbose ) argument
132 hash(
197 BicTest( pfHash hash, const int reps ) argument
239 BicTest3( pfHash hash, const int reps, bool verbose = true ) argument
347 BicTest2( pfHash hash, const int reps, bool verbose = true ) argument
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-profile-stats.h10 // trace and counts of (de)allocation. Buckets are stored in a hash table
13 // A hash value is computed from a stack trace. Collision in the hash table
17 // A structure of a hash table HeapProfileBucket** bucket_table would be like:
46 uintptr_t hash; // Hash value of the stack trace. member in struct:HeapProfileBucket
49 HeapProfileBucket* next; // Next entry in hash-table.
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCatchTable.java133 int hash = (start * 31) + end;
134 hash = (hash * 31) + handlers.hashCode();
135 return hash;
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DImage.java757 int hash = 7;
758 hash = 97 * hash + (this.format != null ? this.format.hashCode() : 0);
759 hash = 97 * hash + this.width;
760 hash = 97 * hash + this.height;
761 hash = 97 * hash + this.depth;
762 hash
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
H A DLoadPathToFileCache.java96 * hash as the key and throw away the loadpath list
99 * @return a long representing a hash of the loadpaths.
102 long hash = 17;
104 hash = 37 * hash + path.hashCode();
106 return hash;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_cache.h56 * @param hash hash function
62 util_cache_create(uint32_t (*hash)(const void *key),
/external/valgrind/main/coregrind/
H A Dm_execontext.c52 The contexts are stored in a traditional chained hash table, so as
54 exists. The hash table starts small and expands dynamically, so as
61 /* Primes for the hash table */
74 /* Each element is present in a hash chain, and also contains a
93 /* This is the dynamically expanding hash table. */
231 Also checks whether the hash table needs expanding, and expands it
244 UWord hash = 0; local
247 hash ^= ips[i];
248 hash = ROLW(hash, 1
279 UWord hash = calc_hash(cur->ips, cur->n_ips, new_size); local
331 UWord hash; local
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java83 * The concurrent hash map implementation built by {@link CacheBuilder}.
96 * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
158 * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
169 /** The segments, each of which is a specialized hash table. */
427 * Returns the default equivalence strategy used to compare and hash keys or values referenced
441 Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) {
442 return new StrongEntry<K, V>(key, hash, next);
448 Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) {
449 return new StrongAccessEntry<K, V>(key, hash, next);
463 Segment<K, V> segment, K key, int hash,
577 newEntry( Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1059 StrongEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1136 final int hash; field in class:LocalCache.StrongEntry
1163 StrongAccessEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1210 StrongWriteEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1257 StrongAccessWriteEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1346 WeakEntry(ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1423 final int hash; field in class:LocalCache.WeakEntry
1450 WeakAccessEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1498 WeakWriteEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1546 WeakAccessWriteEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1863 newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1887 int hash(Object key) { method in class:LocalCache
1918 segmentFor(int hash) argument
2177 newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
2207 get(K key, int hash, CacheLoader<? super K, V> loader) argument
2242 lockedGetOrLoad(K key, int hash, CacheLoader<? super K, V> loader) argument
2348 loadSync(K key, int hash, LoadingValueReference<K, V> loadingValueReference, CacheLoader<? super K, V> loader) argument
2354 loadAsync(final K key, final int hash, final LoadingValueReference<K, V> loadingValueReference, CacheLoader<? super K, V> loader) argument
2377 getAndRecordStats(K key, int hash, LoadingValueReference<K, V> loadingValueReference, ListenableFuture<V> newValue) argument
2396 scheduleRefresh(ReferenceEntry<K, V> entry, K key, int hash, V oldValue, long now, CacheLoader<? super K, V> loader) argument
2414 refresh(K key, int hash, CacheLoader<? super K, V> loader) argument
2437 insertLoadingValueReference(final K key, final int hash) argument
2671 enqueueNotification(@ullable K key, int hash, ValueReference<K, V> valueReference, RemovalCause cause) argument
2717 getFirst(int hash) argument
2726 getEntry(Object key, int hash) argument
2747 getLiveEntry(Object key, int hash, long now) argument
2781 get(Object key, int hash) argument
2803 containsKey(Object key, int hash) argument
2851 put(K key, int hash, V value, boolean onlyIfAbsent) argument
2994 replace(K key, int hash, V oldValue, V newValue) argument
3047 replace(K key, int hash, V newValue) argument
3093 remove(Object key, int hash) argument
3138 storeLoadedValue(K key, int hash, LoadingValueReference<K, V> oldValueReference, V newValue) argument
3190 remove(Object key, int hash, Object value) argument
3267 removeValueFromChain(ReferenceEntry<K, V> first, ReferenceEntry<K, V> entry, @Nullable K key, int hash, ValueReference<K, V> valueReference, RemovalCause cause) argument
3310 reclaimKey(ReferenceEntry<K, V> entry, int hash) argument
3340 reclaimValue(K key, int hash, ValueReference<K, V> valueReference) argument
3375 removeLoadingValue(K key, int hash, LoadingValueReference<K, V> valueReference) argument
3408 removeEntry(ReferenceEntry<K, V> entry, int hash, RemovalCause cause) argument
[all...]
/external/chromium_org/chrome/browser/spellchecker/
H A Dfeedback_sender_unittest.cc102 return results[0].hash;
163 uint32 hash = AddPendingFeedback(); local
166 feedback_->SelectedSuggestion(hash, kSuggestionIndex);
173 uint32 hash = AddPendingFeedback(); local
175 std::vector<uint32>(1, hash));
190 uint32 hash = AddPendingFeedback(); local
192 feedback_->SelectedSuggestion(hash, kSuggestionIndex);
202 uint32 hash = AddPendingFeedback(); local
203 feedback_->AddedToDictionary(hash);
212 uint32 hash local
222 uint32 hash = AddPendingFeedback(); local
232 uint32 hash = AddPendingFeedback(); local
242 uint32 hash = AddPendingFeedback(); local
277 uint32 hash = AddPendingFeedback(); local
503 uint32 hash = AddPendingFeedback(); local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DDigestSignatureSpi.java137 byte[] hash = new byte[digest.getDigestSize()];
139 digest.doFinal(hash, 0);
143 byte[] bytes = derEncode(hash);
161 byte[] hash = new byte[digest.getDigestSize()];
163 digest.doFinal(hash, 0);
172 expected = derEncode(hash);
191 int sigOffset = sig.length - hash.length - 2;
192 int expectedOffset = expected.length - hash.length - 2;
197 for (int i = 0; i < hash.length; i++)
199 if (sig[sigOffset + i] != expected[expectedOffset + i]) // check hash
251 derEncode( byte[] hash) argument
[all...]
/external/chromium/chrome/browser/download/
H A Ddownload_safe_browsing_client.h47 void CheckDownloadHash(const std::string& hash, HashDoneCallback* callback);
51 // hash of downloaded file.
53 void CheckDownloadHashOnIOThread(const std::string& hash);
60 const std::string& hash, SafeBrowsingService::UrlCheckResult result);
81 // Call DownloadManager on UI thread for download URL or hash check.
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dcloud_external_data_manager_base_test_util.cc33 const std::string hash = base::SHA1HashString(data); local
36 metadata->SetStringWithoutPathExpansion("hash", base::HexEncode(hash.c_str(),
37 hash.size()));
/external/chromium_org/content/test/data/indexeddb/
H A Dversion_change_crash.js7 if (document.location.hash === '#part1') {
9 } else if (document.location.hash === '#part2') {
11 } else if (document.location.hash === '#part3') {
14 result('fail - unexpected hash');
/external/chromium_org/net/quic/
H A Dquic_sent_entropy_manager_test.cc40 QuicPacketEntropyHash hash = 0; local
42 hash ^= entropies[i].second;
43 EXPECT_EQ(hash, entropy_manager_.EntropyHash(i + 1));
H A Dquic_utils.cc29 uint64 hash = kOffset; local
32 hash = hash ^ octets[i];
33 hash = hash * kPrime;
36 return hash;
41 // The following two constants are defined as part of the hash algorithm.
51 uint128 hash = kOffset; local
54 hash = hash
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPropertySourceData.cpp112 unsigned CSSPropertySourceData::hash() const function in class:WebCore::CSSPropertySourceData
114 return StringHash::hash(name) + 3 * StringHash::hash(value) + 7 * important + 13 * parsedOk + 31;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
H A DCustomFilterProgramInfo.h72 unsigned hash() const;
89 static unsigned hash(const CustomFilterProgramInfo& programInfo) { return programInfo.hash(); } function in struct:WebCore::CustomFilterProgramInfoHash

Completed in 2070 milliseconds

1234567891011>>