Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h482 IndexedInstrProf::HashT HashType; variable
490 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) in InstrProfLookupTrait() argument
491 : HashType(HashType), FormatVersion(FormatVersion) {} in InstrProfLookupTrait()
582 IndexedInstrProf::HashT HashType, uint64_t Version);
H A DInstrProf.h1109 const HashT HashType = HashT::MD5; variable
1111 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); } in ComputeHash()
1123 uint64_t HashType = static_cast<uint64_t>(IndexedInstrProf::HashType); member
/freebsd/sys/contrib/edk2/Include/Guid/
H A DWinCertificate.h59 EFI_GUID HashType; member
/freebsd/contrib/sendmail/mail.local/
H A Dmail.local.c165 int HashType = HASH_NONE; variable
312 HashType = HASH_USER;
317 HashType = HASH_MD5;
1712 if (HashType == HASH_NONE || HashDepth * 2 >= MAXPATHLEN)
1718 switch(HashType)
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp884 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash()
1003 const unsigned char *const Base, IndexedInstrProf::HashT HashType, in InstrProfReaderIndex() argument
1008 typename HashTableImpl::InfoType(HashType, Version))); in InstrProfReaderIndex()
1366 IndexedInstrProf::HashT HashType = in readHeader() local
1367 static_cast<IndexedInstrProf::HashT>(Header->HashType); in readHeader()
1368 if (HashType > IndexedInstrProf::HashT::Last) in readHeader()
1373 Start + Header->HashOffset, Cur, Start, HashType, Header->Version); in readHeader()
H A DInstrProf.cpp1646 H.HashType = endian::readNext<uint64_t, llvm::endianness::little>(Buffer); in readFromBuffer()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp95 enum HashType : unsigned char { enum in __anon71781d390111::PGOHash
140 void combine(HashType Type);
216 PGOHash::HashType updateCounterMappings(Stmt *S) { in updateCounterMappings()
488 PGOHash::HashType getHashType(PGOHashVersion HashVersion, const Stmt *S) { in DEFINE_NESTABLE_TRAVERSAL()
966 void PGOHash::combine(HashType Type) { in combine()