Home
last modified time | relevance | path

Searched refs:HashType (Results 1 – 8 of 8) sorted by relevance

/openbsd/gnu/llvm/lldb/source/Plugins/Language/ObjC/
H A DCFBasicHash.h19 enum class HashType { set = 0, dict }; enum
30 HashType GetType() const { return m_type; } in GetType()
71 HashType m_type = HashType::set;
H A DCFBasicHash.cpp59 m_type = static_cast<HashType>(m_ht->bits.keys_offset); in UpdateFor()
93 return (m_type == HashType::dict) + 1; in GetPointerCount()
/openbsd/gnu/llvm/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h435 IndexedInstrProf::HashT HashType; variable
443 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) in InstrProfLookupTrait() argument
444 : HashType(HashType), FormatVersion(FormatVersion) {} in InstrProfLookupTrait()
530 IndexedInstrProf::HashT HashType, uint64_t Version);
H A DInstrProf.h1060 const HashT HashType = HashT::MD5; variable
1062 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); } in ComputeHash()
1070 uint64_t HashType; member
/openbsd/gnu/llvm/llvm/lib/ProfileData/
H A DInstrProfReader.cpp683 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash()
783 const unsigned char *const Base, IndexedInstrProf::HashT HashType, in InstrProfReaderIndex() argument
788 typename HashTableImpl::InfoType(HashType, Version))); in InstrProfReaderIndex()
1003 IndexedInstrProf::HashT HashType = static_cast<IndexedInstrProf::HashT>( in readHeader() local
1004 endian::byte_swap<uint64_t, little>(Header->HashType)); in readHeader()
1005 if (HashType > IndexedInstrProf::HashT::Last) in readHeader()
1012 Start + HashOffset, Cur, Start, HashType, Header->formatVersion()); in readHeader()
H A DInstrProfWriter.cpp375 Header.HashType = static_cast<uint64_t>(IndexedInstrProf::HashType); in writeImpl()
H A DInstrProf.cpp1385 H.HashType = read(Buffer, offsetOf(&Header::HashType)); in readFromBuffer()
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenPGO.cpp91 enum HashType : unsigned char { enum in __anon18fb87260111::PGOHash
136 void combine(HashType Type);
203 PGOHash::HashType updateCounterMappings(Stmt *S) { in updateCounterMappings()
272 PGOHash::HashType getHashType(PGOHashVersion HashVersion, const Stmt *S) { in DEFINE_NESTABLE_TRAVERSAL()
750 void PGOHash::combine(HashType Type) { in combine()