Home
last modified time | relevance | path

Searched refs:ComputeHash (Results 1 – 25 of 29) sorted by relevance

12

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DFoldingSet.h251 static inline unsigned ComputeHash(T &X, FoldingSetNodeID &TempID);
273 static inline unsigned ComputeHash(T &X, FoldingSetNodeID &TempID,
298 unsigned ComputeHash() const { in ComputeHash() function
370 unsigned ComputeHash() const { in ComputeHash() function
371 return FoldingSetNodeIDRef(Bits.data(), Bits.size()).ComputeHash(); in ComputeHash()
409 DefaultFoldingSetTrait<T>::ComputeHash(T &X, FoldingSetNodeID &TempID) { in ComputeHash() function
411 return TempID.ComputeHash(); in ComputeHash()
425 DefaultContextualFoldingSetTrait<T, Ctx>::ComputeHash(T &X, in ComputeHash() function
429 return TempID.ComputeHash(); in ComputeHash()
546 return FoldingSetTrait<T>::ComputeHash(*TN, TempID); in ComputeNodeHash()
[all …]
H A DImmutableSet.h293 digest += ID.ComputeHash(); in computeDigest()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderInternals.h93 static hash_value_type ComputeHash(const internal_key_type &Key) { in ComputeHash() function
141 static hash_value_type ComputeHash(const internal_key_type& a);
218 static hash_value_type ComputeHash(Selector Sel);
269 static hash_value_type ComputeHash(internal_key_ref ikey);
H A DASTCommon.h73 unsigned ComputeHash(Selector Sel);
H A DMultiOnDiskHashTable.h238 auto KeyHash = Info::ComputeHash(Key); in find()
H A DGlobalModuleIndex.cpp85 static hash_value_type ComputeHash(const internal_key_type& a) { in ComputeHash() function in __anoncf781a4d0311::IdentifierIndexReaderTrait
729 static hash_value_type ComputeHash(key_type_ref Key) { in ComputeHash() function in __anoncf781a4d0811::IdentifierIndexWriterTrait
H A DASTCommon.cpp276 unsigned serialization::ComputeHash(Selector Sel) { in ComputeHash() function in serialization
H A DASTWriter.cpp1770 hash_value_type ComputeHash(key_type_ref key) { in ComputeHash() function in __anona57837030711::HeaderFileInfoTrait
3217 static hash_value_type ComputeHash(Selector Sel) { in ComputeHash() function in __anona57837030d11::ASTMethodPoolTrait
3218 return serialization::ComputeHash(Sel); in ComputeHash()
3527 static hash_value_type ComputeHash(const IdentifierInfo* II) { in ComputeHash() function in __anona57837030e11::ASTIdentifierTableTrait
3765 hash_value_type ComputeHash(DeclarationNameKey Name) { in ComputeHash() function in __anona57837030f11::ASTDeclContextNameLookupTrait
/openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/
H A DMemProf.h463 hash_value_type ComputeHash(uint64_t K) { return K; } in ComputeHash() function
511 static hash_value_type ComputeHash(key_type_ref K) { return K; } in ComputeHash() function
550 static hash_value_type ComputeHash(key_type_ref K) { return K; } in ComputeHash() function
590 hash_value_type ComputeHash(internal_key_type K) { return K; } in ComputeHash() function
H A DInstrProf.h437 uint64_t ComputeHash(StringRef K);
514 IndexedInstrProf::ComputeHash(FuncName), Ins.first->getKey())); in addFuncName()
1017 inline uint64_t ComputeHash(HashT Type, StringRef K) { in ComputeHash() function
1062 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); } in ComputeHash() function
H A DInstrProfReader.h457 hash_value_type ComputeHash(StringRef K);
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DOnDiskHashTable.h69 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {} in Item()
134 unsigned Hash = InfoObj.ComputeHash(Key); in contains()
344 hash_value_type KeyHash = InfoObj.ComputeHash(IKey);
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DScalarEvolution.h195 static unsigned ComputeHash(const SCEV &X, FoldingSetNodeID &TempID) {
196 return X.FastID.ComputeHash();
273 static unsigned ComputeHash(const SCEVPredicate &X,
275 return X.FastID.ComputeHash();
/openbsd-src/gnu/llvm/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp114 static hash_value_type ComputeHash(key_type_ref K) { in ComputeHash() function in llvm::InstrProfRecordWriterTrait
115 return IndexedInstrProf::ComputeHash(K); in ComputeHash()
H A DInstrProfReader.cpp331 Value = IndexedInstrProf::ComputeHash(VD.first); in readValueProfileData()
682 InstrProfLookupTrait::ComputeHash(StringRef K) { in ComputeHash() function in InstrProfLookupTrait
683 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash()
H A DInstrProfCorrelator.cpp205 maybeSwap<uint64_t>(IndexedInstrProf::ComputeHash(FunctionName)), in addProbe()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DFoldingSet.cpp280 unsigned IDHash = ID.ComputeHash(); in FindNodeOrInsertPos()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConstraintManager.h336 unsigned hash = ID.ComputeHash(); in REGISTER_TRAIT_WITH_PROGRAMSTATE()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DProgramPoint.h189 return ID.ComputeHash(); in getHashValue()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp1665 const uint64_t NameHash = llvm::IndexedInstrProf::ComputeHash(NameValue); in addFunctionMappingRecord()
1720 const int64_t FilenamesRef = llvm::IndexedInstrProf::ComputeHash(Filenames); in emit()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DIndexing.cpp111 return ID.ComputeHash(); in getHashValue()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DODRHash.cpp243 return ID.ComputeHash(); in CalculateHash()
/openbsd-src/gnu/llvm/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp651 llvm::IndexedInstrProf::ComputeHash(FilenameRegion); in readCoverageHeader()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp492 return ID.ComputeHash(); in node_hash()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h110 HashValue = ID.ComputeHash();
133 static unsigned ComputeHash(const SDVTListNode &X, FoldingSetNodeID &TempID) {

12