Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/sys/contrib/edk2/Include/Guid/
H A DWinCertificate.h59 EFI_GUID HashType; member
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h478 IndexedInstrProf::HashT HashType; variable
486 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) in InstrProfLookupTrait() argument
487 : HashType(HashType), FormatVersion(FormatVersion) {} in InstrProfLookupTrait()
576 IndexedInstrProf::HashT HashType, uint64_t Version);
H A DInstrProf.h1033 const HashT HashType = HashT::MD5; variable
1035 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); } in ComputeHash()
1044 uint64_t HashType; member
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp845 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash()
968 const unsigned char *const Base, IndexedInstrProf::HashT HashType, in InstrProfReaderIndex() argument
973 typename HashTableImpl::InfoType(HashType, Version))); in InstrProfReaderIndex()
1189 IndexedInstrProf::HashT HashType = static_cast<IndexedInstrProf::HashT>( in readHeader() local
1190 endian::byte_swap<uint64_t, llvm::endianness::little>(Header->HashType)); in readHeader()
1191 if (HashType > IndexedInstrProf::HashT::Last) in readHeader()
1199 Start + HashOffset, Cur, Start, HashType, Header->formatVersion()); in readHeader()
H A DInstrProfWriter.cpp453 Header.HashType = static_cast<uint64_t>(IndexedInstrProf::HashType); in writeImpl()
H A DInstrProf.cpp1542 H.HashType = read(Buffer, offsetOf(&Header::HashType)); in readFromBuffer()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp93 enum HashType : unsigned char { enum in __anonfabf342f0111::PGOHash
138 void combine(HashType Type);
216 PGOHash::HashType updateCounterMappings(Stmt *S) { in updateCounterMappings()
399 PGOHash::HashType getHashType(PGOHashVersion HashVersion, const Stmt *S) { in DEFINE_NESTABLE_TRAVERSAL()
877 void PGOHash::combine(HashType Type) { in combine()