Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DFoldingSet.h231 static inline unsigned ComputeHash(T &X, FoldingSetNodeID &TempID);
254 static inline unsigned ComputeHash(T &X, FoldingSetNodeID &TempID,
278 unsigned ComputeHash() const;
330 unsigned ComputeHash() const;
368 DefaultFoldingSetTrait<T>::ComputeHash(T &X, FoldingSetNodeID &TempID) { in ComputeHash() function
370 return TempID.ComputeHash(); in ComputeHash()
384 DefaultContextualFoldingSetTrait<T, Ctx>::ComputeHash(T &X, in ComputeHash() function
388 return TempID.ComputeHash(); in ComputeHash()
415 return FoldingSetTrait<T>::ComputeHash(*TN, TempID); in ComputeNodeHash()
491 return ContextualFoldingSetTrait<T, Ctx>::ComputeHash(*TN, TempID, Context); in ComputeNodeHash()
DImmutableSet.h306 digest += ID.ComputeHash(); in computeDigest()
/external/clang/lib/Serialization/
DASTReaderInternals.h71 hash_value_type ComputeHash(const DeclNameKey &Key) const;
103 static hash_value_type ComputeHash(const internal_key_type& a);
178 static hash_value_type ComputeHash(Selector Sel);
228 static hash_value_type ComputeHash(internal_key_ref ikey);
DASTCommon.h70 unsigned ComputeHash(Selector Sel);
DASTCommon.cpp81 unsigned serialization::ComputeHash(Selector Sel) { in ComputeHash() function in serialization
DGlobalModuleIndex.cpp82 static hash_value_type ComputeHash(const internal_key_type& a) { in ComputeHash() function in __anone52971b80311::IdentifierIndexReaderTrait
657 static hash_value_type ComputeHash(key_type_ref Key) { in ComputeHash() function in __anone52971b80711::IdentifierIndexWriterTrait
DASTWriter.cpp1620 static hash_value_type ComputeHash(key_type_ref key) { in ComputeHash() function in __anon3cca536e0411::HeaderFileInfoTrait
1989 static hash_value_type ComputeHash(IdentID IdID) { in ComputeHash() function in __anon3cca536e0511::ASTMacroTableTrait
2891 static hash_value_type ComputeHash(Selector Sel) { in ComputeHash() function in __anon3cca536e0711::ASTMethodPoolTrait
2892 return serialization::ComputeHash(Sel); in ComputeHash()
3317 static hash_value_type ComputeHash(const IdentifierInfo* II) { in ComputeHash() function in __anon3cca536e0811::ASTIdentifierTableTrait
3563 hash_value_type ComputeHash(DeclarationName Name) { in ComputeHash() function in __anon3cca536e0911::ASTDeclContextNameLookupTrait
3574 ID.AddInteger(serialization::ComputeHash(Name.getObjCSelector())); in ComputeHash()
3589 return ID.ComputeHash(); in ComputeHash()
DASTReader.cpp643 unsigned ASTSelectorLookupTrait::ComputeHash(Selector Sel) { in ComputeHash() function in ASTSelectorLookupTrait
644 return serialization::ComputeHash(Sel); in ComputeHash()
712 unsigned ASTIdentifierLookupTraitBase::ComputeHash(const internal_key_type& a) { in ComputeHash() function in ASTIdentifierLookupTraitBase
884 ASTDeclContextNameLookupTrait::ComputeHash(const DeclNameKey &Key) const { in ComputeHash() function in ASTDeclContextNameLookupTrait
896 ID.AddInteger(serialization::ComputeHash(Selector(Key.Data))); in ComputeHash()
908 return ID.ComputeHash(); in ComputeHash()
1513 unsigned HeaderFileInfoTrait::ComputeHash(internal_key_ref ikey) { in ComputeHash() function in HeaderFileInfoTrait
/external/llvm/unittests/ADT/
DFoldingSet.cpp35 EXPECT_EQ(a.ComputeHash(), b.ComputeHash()); in TEST()
/external/llvm/lib/Support/
DFoldingSet.cpp30 unsigned FoldingSetNodeIDRef::ComputeHash() const { in ComputeHash() function in FoldingSetNodeIDRef
146 unsigned FoldingSetNodeID::ComputeHash() const { in ComputeHash() function in FoldingSetNodeID
147 return FoldingSetNodeIDRef(Bits.data(), Bits.size()).ComputeHash(); in ComputeHash()
287 unsigned IDHash = ID.ComputeHash(); in FindNodeOrInsertPos()
/external/llvm/lib/ProfileData/
DInstrProfWriter.cpp35 static hash_value_type ComputeHash(key_type_ref K) { in ComputeHash() function in __anon647228100111::InstrProfRecordTrait
36 return IndexedInstrProf::ComputeHash(IndexedInstrProf::HashType, K); in ComputeHash()
DInstrProfIndexed.h41 static inline uint64_t ComputeHash(HashT Type, StringRef K) { in ComputeHash() function
DInstrProfReader.cpp302 InstrProfLookupTrait::ComputeHash(StringRef K) { in ComputeHash() function in InstrProfLookupTrait
303 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash()
/external/llvm/include/llvm/Support/
DOnDiskHashTable.h69 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {} in Item()
289 hash_value_type KeyHash = InfoObj.ComputeHash(IKey);
/external/clang/lib/Frontend/
DCacheTokens.cpp123 static hash_value_type ComputeHash(PTHEntryKeyVariant V) { in ComputeHash() function in __anon8005ae930111::FileEntryPTHEntryInfo
620 static hash_value_type ComputeHash(PTHIdKey* key) { in ComputeHash() function in __anon8005ae930611::PTHIdentifierTableTrait
/external/clang/lib/Lex/
DPTHLexer.cpp325 static hash_value_type ComputeHash(internal_key_type x) { in ComputeHash() function in __anon607b83e00111::PTHFileLookupCommonTrait
383 static hash_value_type ComputeHash(const internal_key_type& a) { in ComputeHash() function in PTHManager::PTHStringLookupTrait
/external/llvm/include/llvm/Analysis/
DScalarEvolution.h150 static unsigned ComputeHash(const SCEV &X, FoldingSetNodeID &TempID) {
151 return X.FastID.ComputeHash();
/external/llvm/include/llvm/ProfileData/
DInstrProfReader.h228 hash_value_type ComputeHash(StringRef K);
/external/clang/include/clang/Analysis/
DProgramPoint.h163 return ID.ComputeHash(); in getHashValue()
/external/llvm/include/llvm/CodeGen/
DSelectionDAG.h58 HashValue = ID.ComputeHash();
78 static unsigned ComputeHash(const SDVTListNode &X, FoldingSetNodeID &TempID) {
/external/clang/tools/libclang/
DIndexing.cpp137 return ID.ComputeHash();
/external/clang/lib/ARCMigrate/
DObjCMT.cpp2082 return ID.ComputeHash(); in getHashValue()