Searched refs:Hash (Results 1 - 25 of 272) sorted by relevance

1234567891011

/external/chromium_org/third_party/sqlite/src/src/
H A Dhash.h19 typedef struct Hash Hash; typedef in typeref:struct:Hash
31 ** Hash.first points to the head of this list.
33 ** There are Hash.htsize buckets. Each bucket points to a spot in
37 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
39 ** Hash.ht table is never allocated because if there are few elements
43 struct Hash { struct
68 void sqlite3HashInit(Hash*);
69 void *sqlite3HashInsert(Hash*, cons
[all...]
/external/chromium_org/base/
H A Dhash_unittest.cc18 EXPECT_EQ(0u, Hash(str));
22 EXPECT_EQ(2794219650u, Hash(str));
26 EXPECT_EQ(1006697176u, Hash(str));
31 EXPECT_EQ(2319902537u, Hash(str));
36 EXPECT_EQ(553904462u, Hash(str));
44 EXPECT_EQ(2797962408u, Hash(str));
54 EXPECT_EQ(615571198u, Hash(str));
57 EXPECT_EQ(623474296u, Hash(str));
60 EXPECT_EQ(4278562408u, Hash(str));
63 EXPECT_EQ(3224633008u, Hash(st
[all...]
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/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/third_party/sqlite/src/ext/fts1/
H A Dft_hash.h21 typedef struct Hash Hash; typedef in typeref:struct:Hash
32 struct Hash { struct
83 void HashInit(Hash*, int keytype, int copyKey);
84 void *HashInsert(Hash*, const void *pKey, int nKey, void *pData);
85 void *HashFind(const Hash*, const void *pKey, int nKey);
86 void HashClear(Hash*);
92 ** Hash h;
/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/chromium_org/chrome_elf/dll_hash/
H A Ddll_hash.cc9 uint32 data = base::Hash(dll_name);
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.h33 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash);
36 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash);
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/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/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/chrome/browser/safe_browsing/incident_reporting/
H A Dincident_handler_util.cc23 return base::Hash(message_string);
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dhash.h15 extern uint32_t Hash(const char* data, size_t n, uint32_t seed);
/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/WebKit/Source/wtf/
H A DHashFunctions.h182 return pairIntHash(DefaultHash<T>::Hash::hash(p.first), DefaultHash<U>::Hash::hash(p.second));
186 return DefaultHash<T>::Hash::equal(a.first, b.first) && DefaultHash<U>::Hash::equal(a.second, b.second);
188 static const bool safeToCompareToEmptyOrDeleted = DefaultHash<T>::Hash::safeToCompareToEmptyOrDeleted
189 && DefaultHash<U>::Hash::safeToCompareToEmptyOrDeleted;
200 template<> struct DefaultHash<short> { typedef IntHash<unsigned> Hash; }; typedef in struct:WTF::DefaultHash
201 template<> struct DefaultHash<unsigned short> { typedef IntHash<unsigned> Hash; }; typedef in struct:WTF::DefaultHash
202 template<> struct DefaultHash<int> { typedef IntHash<unsigned> Hash; }; typedef in struct:WTF::DefaultHash
203 template<> struct DefaultHash<unsigned> { typedef IntHash<unsigned> Hash; }; typedef in struct:WTF::DefaultHash
204 template<> struct DefaultHash<long> { typedef IntHash<unsigned long> Hash; }; typedef in struct:WTF::DefaultHash
205 template<> struct DefaultHash<unsigned long> { typedef IntHash<unsigned long> Hash; }; typedef in struct:WTF::DefaultHash
206 template<> struct DefaultHash<long long> { typedef IntHash<unsigned long long> Hash; }; typedef in struct:WTF::DefaultHash
207 template<> struct DefaultHash<unsigned long long> { typedef IntHash<unsigned long long> Hash; }; typedef in struct:WTF::DefaultHash
210 template<> struct DefaultHash<wchar_t> { typedef IntHash<wchar_t> Hash; }; typedef in struct:WTF::DefaultHash
213 template<> struct DefaultHash<float> { typedef FloatHash<float> Hash; }; typedef in struct:WTF::DefaultHash
214 template<> struct DefaultHash<double> { typedef FloatHash<double> Hash; }; typedef in struct:WTF::DefaultHash
218 template<typename P> struct DefaultHash<P*> { typedef PtrHash<P*> Hash; }; typedef in struct:WTF::DefaultHash
219 template<typename P> struct DefaultHash<RefPtr<P> > { typedef PtrHash<RefPtr<P> > Hash; }; typedef in struct:WTF::DefaultHash
220 template<typename P> struct DefaultHash<RawPtr<P> > { typedef PtrHash<RawPtr<P> > Hash; }; typedef in struct:WTF::DefaultHash
221 template<typename P> struct DefaultHash<OwnPtr<P> > { typedef PtrHash<OwnPtr<P> > Hash; }; typedef in struct:WTF::DefaultHash
225 template<> struct DefaultHash<std::pair<short, short> > { typedef IntPairHash<short, short> Hash; }; typedef in struct:WTF::DefaultHash
226 template<> struct DefaultHash<std::pair<short, unsigned short> > { typedef IntPairHash<short, unsigned short> Hash; }; typedef in struct:WTF::DefaultHash
227 template<> struct DefaultHash<std::pair<short, int> > { typedef IntPairHash<short, int> Hash; }; typedef in struct:WTF::DefaultHash
228 template<> struct DefaultHash<std::pair<short, unsigned> > { typedef IntPairHash<short, unsigned> Hash; }; typedef in struct:WTF::DefaultHash
229 template<> struct DefaultHash<std::pair<unsigned short, short> > { typedef IntPairHash<unsigned short, short> Hash; }; typedef in struct:WTF::DefaultHash
230 template<> struct DefaultHash<std::pair<unsigned short, unsigned short> > { typedef IntPairHash<unsigned short, unsigned short> Hash; }; typedef in struct:WTF::DefaultHash
231 template<> struct DefaultHash<std::pair<unsigned short, int> > { typedef IntPairHash<unsigned short, int> Hash; }; typedef in struct:WTF::DefaultHash
232 template<> struct DefaultHash<std::pair<unsigned short, unsigned> > { typedef IntPairHash<unsigned short, unsigned> Hash; }; typedef in struct:WTF::DefaultHash
233 template<> struct DefaultHash<std::pair<int, short> > { typedef IntPairHash<int, short> Hash; }; typedef in struct:WTF::DefaultHash
234 template<> struct DefaultHash<std::pair<int, unsigned short> > { typedef IntPairHash<int, unsigned short> Hash; }; typedef in struct:WTF::DefaultHash
235 template<> struct DefaultHash<std::pair<int, int> > { typedef IntPairHash<int, int> Hash; }; typedef in struct:WTF::DefaultHash
236 template<> struct DefaultHash<std::pair<int, unsigned> > { typedef IntPairHash<unsigned, unsigned> Hash; }; typedef in struct:WTF::DefaultHash
237 template<> struct DefaultHash<std::pair<unsigned, short> > { typedef IntPairHash<unsigned, short> Hash; }; typedef in struct:WTF::DefaultHash
238 template<> struct DefaultHash<std::pair<unsigned, unsigned short> > { typedef IntPairHash<unsigned, unsigned short> Hash; }; typedef in struct:WTF::DefaultHash
239 template<> struct DefaultHash<std::pair<unsigned, int> > { typedef IntPairHash<unsigned, int> Hash; }; typedef in struct:WTF::DefaultHash
240 template<> struct DefaultHash<std::pair<unsigned, unsigned> > { typedef IntPairHash<unsigned, unsigned> Hash; }; typedef in struct:WTF::DefaultHash
244 template<typename T, typename U> struct DefaultHash<std::pair<T, U> > { typedef PairHash<T, U> Hash; }; typedef in struct:WTF::DefaultHash
[all...]
/external/chromium_org/components/visitedlink/common/
H A Dvisitedlink_common.h52 typedef int32 Hash; typedef in class:visitedlink::VisitedLinkCommon
56 static const Hash null_hash_;
113 static Hash HashFingerprint(Fingerprint fingerprint, int32 table_length) {
116 return static_cast<Hash>(fingerprint % table_length);
119 Hash HashFingerprint(Fingerprint fingerprint) const {
/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/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...]

Completed in 684 milliseconds

1234567891011