Searched defs:hash (Results 51 - 75 of 870) sorted by relevance

1234567891011>>

/external/chromium_org/components/policy/core/common/cloud/
H A Dexternal_policy_data_updater.h29 // |hash| and then handed to a callback that can do further verification before
40 Request(const std::string& url, const std::string& hash, int64 max_size);
45 std::string hash; member in struct:policy::ExternalPolicyDataUpdater::Request
50 // that does not exceed |max_size| and matches the expected |hash|. The
/external/chromium_org/content/common/
H A Dhost_shared_bitmap_manager.h14 #include "base/hash.h"
25 struct hash<cc::SharedBitmapId> { struct in namespace:BASE_HASH_NAMESPACE
/external/chromium_org/content/public/browser/
H A Dbrowser_context.h160 struct hash<content::BrowserContext*> { struct in namespace:BASE_HASH_NAMESPACE
/external/chromium_org/extensions/common/
H A Did_util.cc40 uint8 hash[kIdSize]; local
41 crypto::SHA256HashString(input, hash, sizeof(hash));
42 std::string output = StringToLowerASCII(base::HexEncode(hash, sizeof(hash)));
/external/chromium_org/gpu/command_buffer/service/
H A Dasync_pixel_transfer_manager.h21 struct hash<gpu::gles2::TextureRef*> { struct in namespace:BASE_HASH_NAMESPACE
23 return hash<size_t>()(reinterpret_cast<size_t>(ptr));
/external/chromium_org/net/quic/
H A Dquic_ack_notifier_manager.h16 struct hash<net::QuicAckNotifier*> { struct in namespace:BASE_HASH_NAMESPACE
18 return hash<size_t>()(reinterpret_cast<size_t>(ptr));
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMURLUtilsReadOnly.h70 static String hash(const KURL&);
71 String hash() { return hash(url()); } function in class:WebCore::DOMURLUtilsReadOnly
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementDescriptorHash.h42 static unsigned hash(const CustomElementDescriptor& descriptor) function in struct:WebCore::CustomElementDescriptorHash
44 return WTF::pairIntHash(AtomicStringHash::hash(descriptor.type()), WTF::pairIntHash(AtomicStringHash::hash(descriptor.namespaceURI()), AtomicStringHash::hash(descriptor.localName())));
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DKeyAlgorithm.cpp64 KeyAlgorithm* KeyAlgorithm::createHash(const blink::WebCryptoAlgorithm& hash) argument
66 // Assume that none of the hash algorithms have any parameters.
67 ASSERT(hash.paramsType() == blink::WebCryptoAlgorithmParamsTypeNone);
68 return new KeyAlgorithm(blink::WebCryptoKeyAlgorithm(hash.id(), nullptr));
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLinkHash.h41 static unsigned hash(LinkHash key) { return static_cast<unsigned>(key); } function in struct:WebCore::LinkHashHash
49 unsigned hash = static_cast<unsigned>(hash64); local
50 unsigned newHash = hash | (!(hash + 1) << 31);
58 // base URL, and returns the hash of the string that will be used for visited
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DKURLHash.h36 static unsigned hash(const KURL& key) function in struct:WebCore::KURLHash
38 return key.string().impl()->hash();
H A DSecurityOriginHash.h39 static unsigned hash(SecurityOrigin* origin) function in struct:WebCore::SecurityOriginHash
42 origin->protocol().impl() ? origin->protocol().impl()->hash() : 0,
43 origin->host().impl() ? origin->host().impl()->hash() : 0,
48 static unsigned hash(const RefPtr<SecurityOrigin>& origin) function in struct:WebCore::SecurityOriginHash
50 return hash(origin.get());
/external/chromium_org/third_party/WebKit/public/web/
H A DWebTextCheckingResult.h50 , hash(0)
54 WebTextCheckingResult(WebTextDecorationType decoration, int location, int length, const WebString& replacement = WebString(), uint32_t hash = 0)
59 , hash(hash)
71 uint32_t hash; member in struct:blink::WebTextCheckingResult
/external/chromium_org/third_party/libyuv/source/
H A Dcompare_common.cc28 // hash seed of 5381 recommended.
31 uint32 hash = seed; local
34 hash += (hash << 5) + src[i];
36 return hash;
H A Dcompare_posix.cc97 uint32 hash; local
139 "=g"(hash) // %3
150 return hash;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/
H A Dtranslate_cache.c37 struct cso_hash *hash; member in struct:translate_cache
47 cache->hash = cso_hash_create();
54 struct cso_hash *hash = cache->hash; local
55 struct cso_hash_iter iter = cso_hash_first_node(hash);
68 cso_hash_delete(cache->hash);
95 cso_hash_find_data_from_template(cache->hash,
102 cso_hash_insert(cache->hash, hash_key, translate);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrBinHashKey.h16 * GrBinHashKey is a hash key class that can take a data chunk of any predetermined
17 * length. The hash function used is the One-at-a-Time Hash
18 * (http://burtleburtle.net/bob/hash/doobs.html).
40 uint32_t hash = 0; local
43 hash += *data++;
44 hash += (hash << 10);
45 hash ^= (hash >> 6);
48 hash
[all...]
/external/chromium_org/third_party/skia/tests/
H A DChecksumTest.cpp38 const uint32_t hash = algorithm(data, kBytes); local
40 ASSERT(hash == algorithm(data, kBytes));
42 // Changing any single element should change the hash.
47 ASSERT(tweakedHash != hash);
/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.
H A Dstack_trace_table.h66 uintptr_t hash; member in struct:tcmalloc::StackTraceTable::Bucket
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstack_trace_table.h66 uintptr_t hash; member in struct:tcmalloc::StackTraceTable::Bucket
/external/chromium_org/tools/gn/
H A Dsource_file.h83 template<> struct hash<SourceFile> { struct in namespace:BASE_HASH_NAMESPACE
85 hash<std::string> h;
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp6.cpp17 template<typename T> struct hash { }; struct
24 hash<T> h;
32 template<> struct hash<S> { struct
/external/deqp/framework/delibs/depool/
H A DdePoolHash.c21 * \brief Memory pool hash class.
40 deTestHash* hash = deTestHash_create(pool); local
47 /* Test find() on empty hash. */
48 DE_TEST_ASSERT(deTestHash_getNumElements(hash) == 0);
51 const int* val = deTestHash_find(hash, (deInt16)i);
58 deTestHash_insert(hash, (deInt16)i, -i);
61 DE_TEST_ASSERT(deTestHash_getNumElements(hash) == 5000);
64 const int* val = deTestHash_find(hash, (deInt16)i);
70 deTestHash_delete(hash, (deInt16)i);
72 DE_TEST_ASSERT(deTestHash_getNumElements(hash)
[all...]
/external/fio/crc/
H A Dmd5.c8 static void md5_transform(uint32_t *hash, uint32_t const *in) argument
12 a = hash[0];
13 b = hash[1];
14 c = hash[2];
15 d = hash[3];
85 hash[0] += a;
86 hash[1] += b;
87 hash[2] += c;
88 hash[3] += d;
93 mctx->hash[
[all...]

Completed in 846 milliseconds

1234567891011>>