Searched defs:Hash (Results 1 - 25 of 120) sorted by relevance

12345

/external/chromium_org/v8/test/mjsunit/
H A Dcall-stub.js28 function Hash() { function
36 Hash.prototype.m = function() {
40 var h = new Hash();
55 Hash.prototype.wwwww = Hash.prototype.m;
34 Hash.prototype.m = function() { class
/external/chromium_org/base/
H A Dhash.h22 inline uint32 Hash(const char* data, size_t length) { function in namespace:base
32 inline uint32 Hash(const std::string& str) { function in namespace:base
33 return Hash(str.data(), str.size());
/external/chromium_org/chrome/browser/supervised_user/experimental/
H A Dsupervised_user_blacklist.h27 struct Hash { struct in class:SupervisedUserBlacklist
28 Hash() {} function in struct:SupervisedUserBlacklist::Hash
29 explicit Hash(const std::string& host);
30 bool operator<(const Hash& rhs) const;
50 scoped_ptr<std::vector<Hash> > host_hashes);
52 std::vector<Hash> host_hashes_;
H A Dsupervised_user_blacklist.cc20 scoped_ptr<std::vector<SupervisedUserBlacklist::Hash> >
24 scoped_ptr<std::vector<SupervisedUserBlacklist::Hash> > host_hashes(
25 new std::vector<SupervisedUserBlacklist::Hash>);
52 SupervisedUserBlacklist::Hash::Hash(const std::string& host) { function in class:SupervisedUserBlacklist::Hash
58 bool SupervisedUserBlacklist::Hash::operator<(const Hash& rhs) const {
67 Hash hash(url.host());
88 scoped_ptr<std::vector<Hash> > host_hashes) {
/external/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h32 uint64_t Hash; member in struct:llvm::InstrProfWriter::CounterData
/external/llvm/unittests/Support/
H A DMD5Test.cpp24 MD5 Hash; local
25 Hash.update(Input);
27 Hash.final(MD5Res);
34 MD5 Hash; local
35 Hash.update(Input);
37 Hash.final(MD5Res);
/external/chromium_org/third_party/webrtc/base/
H A Dsocketaddresspair.cc37 size_t SocketAddressPair::Hash() const { function in class:rtc::SocketAddressPair
38 return src_.Hash() ^ dest_.Hash();
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cc30 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash,
32 if (checkDynamicType((void*)Pointer, Data->TypeInfo, Hash))
68 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) {
69 HandleDynamicTypeCacheMiss(Data, Pointer, Hash, false);
72 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) {
73 HandleDynamicTypeCacheMiss(Data, Pointer, Hash, true);
29 HandleDynamicTypeCacheMiss( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash, bool Abort) argument
67 __ubsan_handle_dynamic_type_cache_miss( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) argument
71 __ubsan_handle_dynamic_type_cache_miss_abort( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) argument
/external/libcxx/test/containers/unord/unord.map/
H A Dswap_member.pass.cpp12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
30 typedef test_hash<std::hash<int> > Hash; typedef
33 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
35 C c1(0, Hash(1), Compare(1), Alloc(1));
36 C c2(0, Hash(2), Compare(2), Alloc(2));
42 assert(c1.hash_function() == Hash(2));
51 assert(c2.hash_function() == Hash(1));
59 typedef test_hash<std::hash<int> > Hash; typedef
62 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
75 C c1(0, Hash(
107 typedef test_hash<std::hash<int> > Hash; typedef
149 typedef test_hash<std::hash<int> > Hash; typedef
211 typedef test_hash<std::hash<int> > Hash; typedef
240 typedef test_hash<std::hash<int> > Hash; typedef
288 typedef test_hash<std::hash<int> > Hash; typedef
330 typedef test_hash<std::hash<int> > Hash; typedef
392 typedef test_hash<std::hash<int> > Hash; typedef
421 typedef test_hash<std::hash<int> > Hash; typedef
469 typedef test_hash<std::hash<int> > Hash; typedef
511 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/external/libcxx/test/containers/unord/unord.map/unord.map.swap/
H A Dswap_non_member.pass.cpp12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
30 typedef test_hash<std::hash<int> > Hash; typedef
33 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
35 C c1(0, Hash(1), Compare(1), Alloc(1));
36 C c2(0, Hash(2), Compare(2), Alloc(2));
42 assert(c1.hash_function() == Hash(2));
51 assert(c2.hash_function() == Hash(1));
59 typedef test_hash<std::hash<int> > Hash; typedef
62 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
75 C c1(0, Hash(
107 typedef test_hash<std::hash<int> > Hash; typedef
149 typedef test_hash<std::hash<int> > Hash; typedef
211 typedef test_hash<std::hash<int> > Hash; typedef
240 typedef test_hash<std::hash<int> > Hash; typedef
288 typedef test_hash<std::hash<int> > Hash; typedef
330 typedef test_hash<std::hash<int> > Hash; typedef
392 typedef test_hash<std::hash<int> > Hash; typedef
421 typedef test_hash<std::hash<int> > Hash; typedef
469 typedef test_hash<std::hash<int> > Hash; typedef
511 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/external/libcxx/test/containers/unord/unord.multimap/
H A Dswap_member.pass.cpp12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
31 typedef test_hash<std::hash<int> > Hash; typedef
34 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
36 C c1(0, Hash(1), Compare(1), Alloc(1));
37 C c2(0, Hash(2), Compare(2), Alloc(2));
43 assert(c1.hash_function() == Hash(2));
52 assert(c2.hash_function() == Hash(1));
60 typedef test_hash<std::hash<int> > Hash; typedef
63 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
76 C c1(0, Hash(
108 typedef test_hash<std::hash<int> > Hash; typedef
152 typedef test_hash<std::hash<int> > Hash; typedef
216 typedef test_hash<std::hash<int> > Hash; typedef
245 typedef test_hash<std::hash<int> > Hash; typedef
293 typedef test_hash<std::hash<int> > Hash; typedef
337 typedef test_hash<std::hash<int> > Hash; typedef
401 typedef test_hash<std::hash<int> > Hash; typedef
430 typedef test_hash<std::hash<int> > Hash; typedef
478 typedef test_hash<std::hash<int> > Hash; typedef
522 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/external/libcxx/test/containers/unord/unord.multimap/unord.multimap.swap/
H A Dswap_non_member.pass.cpp12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
30 typedef test_hash<std::hash<int> > Hash; typedef
33 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
35 C c1(0, Hash(1), Compare(1), Alloc(1));
36 C c2(0, Hash(2), Compare(2), Alloc(2));
42 assert(c1.hash_function() == Hash(2));
51 assert(c2.hash_function() == Hash(1));
59 typedef test_hash<std::hash<int> > Hash; typedef
62 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
75 C c1(0, Hash(
107 typedef test_hash<std::hash<int> > Hash; typedef
151 typedef test_hash<std::hash<int> > Hash; typedef
215 typedef test_hash<std::hash<int> > Hash; typedef
244 typedef test_hash<std::hash<int> > Hash; typedef
292 typedef test_hash<std::hash<int> > Hash; typedef
336 typedef test_hash<std::hash<int> > Hash; typedef
400 typedef test_hash<std::hash<int> > Hash; typedef
429 typedef test_hash<std::hash<int> > Hash; typedef
477 typedef test_hash<std::hash<int> > Hash; typedef
521 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/external/libcxx/test/containers/unord/unord.multiset/
H A Dswap_member.pass.cpp12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
29 typedef test_hash<std::hash<int> > Hash; typedef
32 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C;
34 C c1(0, Hash(1), Compare(1), Alloc(1));
35 C c2(0, Hash(2), Compare(2), Alloc(2));
41 assert(c1.hash_function() == Hash(2));
50 assert(c2.hash_function() == Hash(1));
58 typedef test_hash<std::hash<int> > Hash; typedef
61 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C;
74 C c1(0, Hash(
106 typedef test_hash<std::hash<int> > Hash; typedef
148 typedef test_hash<std::hash<int> > Hash; typedef
210 typedef test_hash<std::hash<int> > Hash; typedef
239 typedef test_hash<std::hash<int> > Hash; typedef
287 typedef test_hash<std::hash<int> > Hash; typedef
329 typedef test_hash<std::hash<int> > Hash; typedef
391 typedef test_hash<std::hash<int> > Hash; typedef
420 typedef test_hash<std::hash<int> > Hash; typedef
468 typedef test_hash<std::hash<int> > Hash; typedef
510 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/external/libcxx/test/containers/unord/unord.multiset/unord.multiset.swap/
H A Dswap_non_member.pass.cpp12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
29 typedef test_hash<std::hash<int> > Hash; typedef
32 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C;
34 C c1(0, Hash(1), Compare(1), Alloc(1));
35 C c2(0, Hash(2), Compare(2), Alloc(2));
41 assert(c1.hash_function() == Hash(2));
50 assert(c2.hash_function() == Hash(1));
58 typedef test_hash<std::hash<int> > Hash; typedef
61 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C;
74 C c1(0, Hash(
106 typedef test_hash<std::hash<int> > Hash; typedef
148 typedef test_hash<std::hash<int> > Hash; typedef
210 typedef test_hash<std::hash<int> > Hash; typedef
239 typedef test_hash<std::hash<int> > Hash; typedef
287 typedef test_hash<std::hash<int> > Hash; typedef
329 typedef test_hash<std::hash<int> > Hash; typedef
391 typedef test_hash<std::hash<int> > Hash; typedef
420 typedef test_hash<std::hash<int> > Hash; typedef
468 typedef test_hash<std::hash<int> > Hash; typedef
510 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/external/libcxx/test/containers/unord/unord.set/
H A Dswap_member.pass.cpp12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
29 typedef test_hash<std::hash<int> > Hash; typedef
32 typedef std::unordered_set<int, Hash, Compare, Alloc> C;
34 C c1(0, Hash(1), Compare(1), Alloc(1));
35 C c2(0, Hash(2), Compare(2), Alloc(2));
41 assert(c1.hash_function() == Hash(2));
50 assert(c2.hash_function() == Hash(1));
58 typedef test_hash<std::hash<int> > Hash; typedef
61 typedef std::unordered_set<int, Hash, Compare, Alloc> C;
74 C c1(0, Hash(
106 typedef test_hash<std::hash<int> > Hash; typedef
148 typedef test_hash<std::hash<int> > Hash; typedef
210 typedef test_hash<std::hash<int> > Hash; typedef
239 typedef test_hash<std::hash<int> > Hash; typedef
287 typedef test_hash<std::hash<int> > Hash; typedef
329 typedef test_hash<std::hash<int> > Hash; typedef
391 typedef test_hash<std::hash<int> > Hash; typedef
420 typedef test_hash<std::hash<int> > Hash; typedef
468 typedef test_hash<std::hash<int> > Hash; typedef
510 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/external/libcxx/test/containers/unord/unord.set/unord.set.swap/
H A Dswap_non_member.pass.cpp12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
29 typedef test_hash<std::hash<int> > Hash; typedef
32 typedef std::unordered_set<int, Hash, Compare, Alloc> C;
34 C c1(0, Hash(1), Compare(1), Alloc(1));
35 C c2(0, Hash(2), Compare(2), Alloc(2));
41 assert(c1.hash_function() == Hash(2));
50 assert(c2.hash_function() == Hash(1));
58 typedef test_hash<std::hash<int> > Hash; typedef
61 typedef std::unordered_set<int, Hash, Compare, Alloc> C;
74 C c1(0, Hash(
106 typedef test_hash<std::hash<int> > Hash; typedef
148 typedef test_hash<std::hash<int> > Hash; typedef
210 typedef test_hash<std::hash<int> > Hash; typedef
239 typedef test_hash<std::hash<int> > Hash; typedef
287 typedef test_hash<std::hash<int> > Hash; typedef
329 typedef test_hash<std::hash<int> > Hash; typedef
391 typedef test_hash<std::hash<int> > Hash; typedef
420 typedef test_hash<std::hash<int> > Hash; typedef
468 typedef test_hash<std::hash<int> > Hash; typedef
510 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/external/skia/include/gpu/
H A DGrKey.h15 typedef intptr_t Hash; typedef in class:GrKey
17 explicit GrKey(Hash hash) : fHash(hash) {}
33 const Hash fHash;
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DSecurityOriginHash.h93 typedef blink::SecurityOriginHash Hash; typedef in struct:WTF::DefaultHash
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dhash.cc18 uint32_t Hash(const char* data, size_t n, uint32_t seed) { function in namespace:leveldb
/external/chromium_org/third_party/skia/include/gpu/
H A DGrFontScaler.h26 typedef uint32_t Hash; typedef in class:GrFontDescKey
31 Hash getHash() const { return fHash; }
50 const Hash fHash;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrResourceCache2.h49 static uint32_t Hash(const GrResourceKey& key) { return key.getHash(); } function in struct:GrResourceCache2::ScratchMapTraits
/external/llvm/lib/CodeGen/AsmPrinter/
H A DByteStreamer.h56 DIEHash &Hash; member in class:llvm::HashingByteStreamer
58 HashingByteStreamer(DIEHash &H) : Hash(H) {}
60 Hash.update(Byte);
63 Hash.addSLEB128(DWord);
66 Hash.addULEB128(DWord);
/external/llvm/lib/ProfileData/
H A DInstrProfIndexed.h30 MD5 Hash; local
31 Hash.update(Str);
33 Hash.final(Result);
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementDescriptor.h96 typedef blink::CustomElementDescriptorHash Hash; typedef in struct:WTF::DefaultHash
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCookie.h79 typedef blink::CookieHash Hash; typedef in struct:WTF::DefaultHash

Completed in 421 milliseconds

12345