Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h403 IndexedInstrProf::HashT HashType; variable
411 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) in InstrProfLookupTrait() argument
412 : HashType(HashType), FormatVersion(FormatVersion) {} in InstrProfLookupTrait()
497 IndexedInstrProf::HashT HashType, uint64_t Version);
H A DInstrProf.h1029 const HashT HashType = HashT::MD5; variable
1031 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); } in ComputeHash()
1039 uint64_t HashType; member
/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DInstrProfReader.cpp633 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash()
733 const unsigned char *const Base, IndexedInstrProf::HashT HashType, in InstrProfReaderIndex() argument
738 typename HashTableImpl::InfoType(HashType, Version))); in InstrProfReaderIndex()
953 IndexedInstrProf::HashT HashType = static_cast<IndexedInstrProf::HashT>( in readHeader() local
954 endian::byte_swap<uint64_t, little>(Header->HashType)); in readHeader()
955 if (HashType > IndexedInstrProf::HashT::Last) in readHeader()
962 Start + HashOffset, Cur, Start, HashType, Header->formatVersion()); in readHeader()
H A DInstrProfWriter.cpp365 Header.HashType = static_cast<uint64_t>(IndexedInstrProf::HashType); in writeImpl()
H A DInstrProf.cpp1354 H.HashType = read(Buffer, offsetOf(&Header::HashType)); in readFromBuffer()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenPGO.cpp90 enum HashType : unsigned char { enum in __anonc3cc86690111::PGOHash
135 void combine(HashType Type);
202 PGOHash::HashType updateCounterMappings(Stmt *S) { in updateCounterMappings()
271 PGOHash::HashType getHashType(PGOHashVersion HashVersion, const Stmt *S) { in DEFINE_NESTABLE_TRAVERSAL()
749 void PGOHash::combine(HashType Type) { in combine()