HomeSort by relevance Sort by last modified time
    Searched refs:hash (Results 226 - 250 of 1583) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/child/webcrypto/nss/
hmac_nss.cc 65 const blink::WebCryptoAlgorithm& hash = params->hash(); variable
67 if (!WebCryptoHashToHMACMechanism(hash, &mechanism))
76 blink::WebCryptoKeyAlgorithm::createHmac(hash.id(), keylen_bits),
106 const blink::WebCryptoAlgorithm& hash = variable
107 algorithm.hmacImportParams()->hash();
110 if (!WebCryptoHashToHMACMechanism(hash, &mechanism))
121 hash.id(), keylen_bits.ValueOrDie()),
135 GetJwkHmacAlgorithmName(algorithm.hmacImportParams()->hash().id());
161 GetJwkHmacAlgorithmName(key.algorithm().hmacParams()->hash().id())
178 const blink::WebCryptoAlgorithm& hash = variable
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
index_table_v3.cc 46 // The number of bits that a hash has to be shifted to grab the part that
112 void SetCellId(IndexCell* cell, uint32 hash) {
113 DCHECK_LE(hash, static_cast<uint32>(kCellIdMask));
115 cell->first_part |= static_cast<int64>(hash) << kCellIdOffset;
118 void SetCellSmallTableId(IndexCell* cell, uint32 hash) {
119 DCHECK_LE(hash, static_cast<uint32>(kCellSmallTableIdMask));
121 cell->first_part |= static_cast<int64>(hash) << kCellSmallTableIdOffset;
248 CellInfo cell_info = { cell.hash(), cell.GetAddress() };
321 uint32 hash,
326 EntryCell entry_cell(cell_num, hash, *cell, small_table)
1019 uint32 hash = GetFullHash(*current_cell, main_table_index); local
1073 uint32 hash = GetFullHash(*current_cell, main_table_index); local
    [all...]
  /external/chromium_org/sync/util/
nigori.cc 145 std::vector<unsigned char> hash(kHashSize);
146 if (!hmac.Sign(ciphertext, &hash[0], hash.size()))
151 output.append(hash.begin(), hash.end());
181 std::vector<unsigned char> hash(kHashSize);
182 if (!hmac.Sign(ciphertext, &hash[0], hash.size()))
188 output.append(hash.begin(), hash.end())
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java 424 int hash = map.hash(key); local
427 ReferenceEntry<Object, Object> entry = segment.getEntry(key, hash);
480 int hash = map.hash(key); local
482 int index = hash & (table.length() - 1);
484 DummyEntry<Object, Object> entry = DummyEntry.create(key, hash, null);
509 int hash = map.hash(key); local
511 int index = hash & (table.length() - 1)
570 int hash = map.hash(one); local
707 int hash = map.hash(key); local
809 int hash = map.hash(one); local
969 int hash = map.hash(key); local
1044 int hash = map.hash(key); local
1088 int hash = map.hash(key); local
1127 int hash = map.hash(key); local
1159 int hash = map.hash(key); local
1194 int hash = map.hash(key); local
1230 int hash = map.hash(key); local
1305 int hash = map.hash(key); local
1344 int hash = map.hash(key); local
1397 int hash = map.hash(key); local
1529 int hash = map.hash(key); local
1587 int hash = map.hash(key); local
1622 int hash = map.hash(key); local
1657 int hash = map.hash(key); local
1691 int hash = map.hash(key); local
1737 int hash = map.hash(key); local
1860 int hash = map.hash(key); local
1901 int hash = map.hash(key); local
1943 int hash = map.hash(key); local
2144 int hash = map.hash(key); local
2481 private final int hash; field in class:LocalCacheTest.DummyEntry
    [all...]
  /external/chromium_org/chrome/browser/chromeos/profiles/
profile_helper_browsertest.cc 32 const std::string& hash) {
33 profile_helper->ActiveUserHashChanged(hash);
  /external/chromium_org/chrome/browser/spellchecker/
feedback.h 9 // |Misspelling| object is identified by a |hash| and corresponds to a document
10 // marker with the same |hash| identifier in the renderer.
37 // Returns the misspelling identified by |hash|. Returns NULL if there's no
38 // misspelling identified by |hash|. Retains the ownership of the result. The
39 // caller should not modify the hash in the returned misspelling.
40 Misspelling* GetMisspelling(uint32 hash);
61 // Returns true if there's a misspelling with |hash| identifier.
62 bool HasMisspelling(uint32 hash) const;
65 // duplicate hash, then replaces the existing misspelling with the same hash
    [all...]
  /external/chromium_org/content/browser/manifest/
manifest_manager_host.h 15 struct hash<content::RenderFrameHost*> { struct in namespace:BASE_HASH_NAMESPACE
17 return hash<uint64>()(reinterpret_cast<uint64>(ptr));
  /external/chromium_org/net/third_party/nss/ssl/
sslplatf.c 204 ssl3_CngPlatformSignHashes(SSL3Hashes *hash, PlatformKey key, SECItem *buf,
229 switch (hash->hashAlg) {
250 hashItem.data = hash->u.raw;
251 hashItem.len = hash->len;
262 if (hash->hashAlg == SEC_OID_UNKNOWN) {
263 hashItem.data = hash->u.s.sha;
264 hashItem.len = sizeof(hash->u.s.sha);
266 hashItem.data = hash->u.raw;
267 hashItem.len = hash->len;
274 PRINT_BUF(60, (NULL, "hash(es) to be signed", hashItem.data, hashItem.len))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontDataCache.h 44 static unsigned hash(const FontPlatformData& platformData) function in struct:blink::FontDataCacheKeyHash
46 return platformData.hash();
  /external/chromium_org/third_party/WebKit/public/platform/
WebCryptoKeyAlgorithm.h 63 BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createHmac(WebCryptoAlgorithmId hash, unsigned keyLengthBits);
64 BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createRsaHashed(WebCryptoAlgorithmId, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, WebCryptoAlgorithmId hash);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pt_vsplit.c 89 unsigned hash; local
93 hash = fetch % MAP_SIZE;
95 if (vsplit->cache.fetches[hash] != fetch) {
97 vsplit->cache.fetches[hash] = fetch;
98 vsplit->cache.draws[hash] = vsplit->cache.num_fetch_elts;
105 vsplit->draw_elts[vsplit->cache.num_draw_elts++] = vsplit->cache.draws[hash];
118 unsigned hash = fetch % MAP_SIZE; local
119 vsplit->cache.fetches[hash] = fetch - 1; /* force update */
  /external/chromium_org/tools/page_cycler/startup_test_common/
head.js 6 console.log("PAGE_ONLOAD_EVENT" + location.hash);
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLDHPrivateKey.java 183 int hash = 1; local
185 hash = hash * 3 + x.hashCode();
187 hash = hash * 7 + p.hashCode();
188 hash = hash * 13 + g.hashCode();
189 return hash;
OpenSSLDHPublicKey.java 160 int hash = 1; local
161 hash = hash * 3 + y.hashCode();
162 hash = hash * 7 + p.hashCode();
163 hash = hash * 13 + g.hashCode();
164 return hash;
  /external/guava/guava/src/com/google/common/hash/
Hasher.java 15 package com.google.common.hash;
22 * A {@link Sink} that can compute a hash code after reading the input. Each hasher should
65 * Computes a hash code based on the data that have been provided to this hasher. The result is
68 HashCode hash(); method in interface:Hasher
  /external/ipsec-tools/src/racoon/
isakmp_newg.c 75 struct isakmp_pl_hash *hash = NULL;
101 if (hash) {
109 hash = (struct isakmp_pl_hash *)pa->ptr;
137 if (!hash || !sa) {
140 "no HASH, or no SA payload.\n");
145 /* validate HASH */
151 plog(LLV_DEBUG, LOCATION, NULL, "validate HASH\n");
163 plog(LLV_DEBUG, LOCATION, NULL, "hash source\n");
171 plog(LLV_DEBUG, LOCATION, NULL, "hash result\n");
174 r_hash = (char *)hash + sizeof(*hash)
    [all...]
  /external/libcxx/test/containers/sequences/vector.bool/
vector_bool.pass.cpp 13 // struct hash
31 typedef std::hash<T> H;
42 typedef std::hash<T> H;
  /external/libcxx/test/containers/unord/unord.multiset/
max_load_factor.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
46 typedef std::unordered_multiset<int, std::hash<int>,
53 typedef std::unordered_multiset<int, std::hash<int>,
  /external/libcxx/test/containers/unord/unord.set/
max_load_factor.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
46 typedef std::unordered_set<int, std::hash<int>,
53 typedef std::unordered_set<int, std::hash<int>,
  /external/libcxx/test/containers/unord/unord.set/unord.set.cnstr/
size.fail.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
30 test_hash<std::hash<NotConstructible> >,
36 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_vsplit.c 89 unsigned hash; local
93 hash = fetch % MAP_SIZE;
95 if (vsplit->cache.fetches[hash] != fetch) {
97 vsplit->cache.fetches[hash] = fetch;
98 vsplit->cache.draws[hash] = vsplit->cache.num_fetch_elts;
105 vsplit->draw_elts[vsplit->cache.num_draw_elts++] = vsplit->cache.draws[hash];
118 unsigned hash = fetch % MAP_SIZE; local
119 vsplit->cache.fetches[hash] = fetch - 1; /* force update */
  /external/oprofile/daemon/
opd_cookie.c 135 unsigned long hash = hash_cookie(cookie); local
142 list_for_each(pos, &hashes[hash]) {
150 list_add(&entry->list, &hashes[hash]);
158 unsigned long hash = hash_cookie(cookie); local
165 list_for_each(pos, &hashes[hash]) {
172 list_add(&entry->list, &hashes[hash]);
180 unsigned long hash = hash_cookie(cookie); local
190 list_for_each(pos, &hashes[hash]) {
opd_sfile.h 35 * 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
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchTable.java 133 int hash = (start * 31) + end; local
134 hash = (hash * 31) + handlers.hashCode();
135 return hash;
  /dalvik/dx/src/com/android/dx/dex/code/
CatchTable.java 132 int hash = (start * 31) + end; local
133 hash = (hash * 31) + handlers.hashCode();
134 return hash;

Completed in 1600 milliseconds

1 2 3 4 5 6 7 8 91011>>