/external/llvm-project/lldb/source/Plugins/Language/ObjC/ |
D | CFBasicHash.h | 19 enum class HashType { set = 0, dict }; enum 30 HashType GetType() const { return m_type; } in GetType() 71 HashType m_type;
|
D | CFBasicHash.cpp | 59 m_type = static_cast<HashType>(m_ht->bits.keys_offset); in UpdateFor() 93 return (m_type == HashType::dict) + 1; in GetPointerCount()
|
/external/libchrome/base/containers/ |
D | mru_cache.h | 241 template <class KeyType, class ValueType, class HashType> 243 typedef std::unordered_map<KeyType, ValueType, HashType> Type; 249 template <class KeyType, class PayloadType, class HashType = std::hash<KeyType>> 251 : public MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap> { 254 MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap>;
|
/external/angle/src/common/third_party/base/anglebase/containers/ |
D | mru_cache.h | 247 template <class KeyType, class ValueType, class HashType> 250 typedef std::unordered_map<KeyType, ValueType, HashType> Type; 256 template <class KeyType, class PayloadType, class HashType = std::hash<KeyType>> 257 class HashingMRUCache : public MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap> 260 using ParentType = MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap>;
|
/external/llvm/include/llvm/ProfileData/ |
D | InstrProfReader.h | 259 IndexedInstrProf::HashT HashType; variable 267 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) in InstrProfLookupTrait() argument 268 : HashType(HashType), FormatVersion(FormatVersion), in InstrProfLookupTrait() 337 IndexedInstrProf::HashT HashType, uint64_t Version);
|
D | InstrProf.h | 792 const HashT HashType = HashT::MD5; variable 794 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); } in ComputeHash() 802 uint64_t HashType; member
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
D | InstrProfReader.h | 300 IndexedInstrProf::HashT HashType; variable 308 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) in InstrProfLookupTrait() argument 309 : HashType(HashType), FormatVersion(FormatVersion) {} in InstrProfLookupTrait() 385 IndexedInstrProf::HashT HashType, uint64_t Version);
|
D | InstrProf.h | 982 const HashT HashType = HashT::MD5; variable 984 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); } in ComputeHash() 992 uint64_t HashType; member
|
/external/llvm-project/llvm/include/llvm/ProfileData/ |
D | InstrProfReader.h | 309 IndexedInstrProf::HashT HashType; variable 317 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) in InstrProfLookupTrait() argument 318 : HashType(HashType), FormatVersion(FormatVersion) {} in InstrProfLookupTrait() 395 IndexedInstrProf::HashT HashType, uint64_t Version);
|
D | InstrProf.h | 991 const HashT HashType = HashT::MD5; variable 993 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); } in ComputeHash() 1001 uint64_t HashType; member
|
/external/llvm/lib/ProfileData/ |
D | InstrProfReader.cpp | 460 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash() 557 const unsigned char *const Base, IndexedInstrProf::HashT HashType, in InstrProfReaderIndex() argument 562 typename HashTableImpl::InfoType(HashType, Version))); in InstrProfReaderIndex() 651 IndexedInstrProf::HashT HashType = static_cast<IndexedInstrProf::HashT>( in readHeader() local 652 endian::byte_swap<uint64_t, little>(Header->HashType)); in readHeader() 653 if (HashType > IndexedInstrProf::HashT::Last) in readHeader() 661 Start + HashOffset, Cur, Start, HashType, FormatVersion); in readHeader()
|
D | InstrProfWriter.cpp | 231 Header.HashType = static_cast<uint64_t>(IndexedInstrProf::HashType); in writeImpl()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
D | InstrProfReader.cpp | 511 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash() 609 const unsigned char *const Base, IndexedInstrProf::HashT HashType, in InstrProfReaderIndex() argument 614 typename HashTableImpl::InfoType(HashType, Version))); in InstrProfReaderIndex() 831 IndexedInstrProf::HashT HashType = static_cast<IndexedInstrProf::HashT>( in readHeader() local 832 endian::byte_swap<uint64_t, little>(Header->HashType)); in readHeader() 833 if (HashType > IndexedInstrProf::HashT::Last) in readHeader() 841 Start + HashOffset, Cur, Start, HashType, FormatVersion); in readHeader()
|
D | InstrProfWriter.cpp | 312 Header.HashType = static_cast<uint64_t>(IndexedInstrProf::HashType); in writeImpl()
|
/external/llvm-project/llvm/lib/ProfileData/ |
D | InstrProfReader.cpp | 518 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash() 616 const unsigned char *const Base, IndexedInstrProf::HashT HashType, in InstrProfReaderIndex() argument 621 typename HashTableImpl::InfoType(HashType, Version))); in InstrProfReaderIndex() 838 IndexedInstrProf::HashT HashType = static_cast<IndexedInstrProf::HashT>( in readHeader() local 839 endian::byte_swap<uint64_t, little>(Header->HashType)); in readHeader() 840 if (HashType > IndexedInstrProf::HashT::Last) in readHeader() 848 Start + HashOffset, Cur, Start, HashType, FormatVersion); in readHeader()
|
D | InstrProfWriter.cpp | 316 Header.HashType = static_cast<uint64_t>(IndexedInstrProf::HashType); in writeImpl()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CodeGenPGO.cpp | 90 enum HashType : unsigned char { enum in __anond95592500111::PGOHash 135 void combine(HashType Type); 199 PGOHash::HashType updateCounterMappings(Stmt *S) { in updateCounterMappings() 256 PGOHash::HashType getHashType(PGOHashVersion HashVersion, const Stmt *S) { in DEFINE_NESTABLE_TRAVERSAL() 726 void PGOHash::combine(HashType Type) { in combine()
|
/external/clang/lib/CodeGen/ |
D | CodeGenPGO.cpp | 78 enum HashType : unsigned char { enum in __anon18cddda20111::PGOHash 105 void combine(HashType Type); 157 PGOHash::HashType getHashType(const Stmt *S) { in getHashType() 577 void PGOHash::combine(HashType Type) { in combine()
|