/external/llvm/include/llvm/ADT/ |
D | FoldingSet.h | 231 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()
|
D | ImmutableSet.h | 306 digest += ID.ComputeHash(); in computeDigest()
|
/external/clang/lib/Serialization/ |
D | ASTReaderInternals.h | 71 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);
|
D | ASTCommon.h | 70 unsigned ComputeHash(Selector Sel);
|
D | ASTCommon.cpp | 81 unsigned serialization::ComputeHash(Selector Sel) { in ComputeHash() function in serialization
|
D | GlobalModuleIndex.cpp | 82 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
|
D | ASTWriter.cpp | 1620 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()
|
D | ASTReader.cpp | 643 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/ |
D | FoldingSet.cpp | 35 EXPECT_EQ(a.ComputeHash(), b.ComputeHash()); in TEST()
|
/external/llvm/lib/Support/ |
D | FoldingSet.cpp | 30 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/ |
D | InstrProfWriter.cpp | 35 static hash_value_type ComputeHash(key_type_ref K) { in ComputeHash() function in __anon647228100111::InstrProfRecordTrait 36 return IndexedInstrProf::ComputeHash(IndexedInstrProf::HashType, K); in ComputeHash()
|
D | InstrProfIndexed.h | 41 static inline uint64_t ComputeHash(HashT Type, StringRef K) { in ComputeHash() function
|
D | InstrProfReader.cpp | 302 InstrProfLookupTrait::ComputeHash(StringRef K) { in ComputeHash() function in InstrProfLookupTrait 303 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash()
|
/external/llvm/include/llvm/Support/ |
D | OnDiskHashTable.h | 69 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {} in Item() 289 hash_value_type KeyHash = InfoObj.ComputeHash(IKey);
|
/external/clang/lib/Frontend/ |
D | CacheTokens.cpp | 123 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/ |
D | PTHLexer.cpp | 325 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/ |
D | ScalarEvolution.h | 150 static unsigned ComputeHash(const SCEV &X, FoldingSetNodeID &TempID) { 151 return X.FastID.ComputeHash();
|
/external/llvm/include/llvm/ProfileData/ |
D | InstrProfReader.h | 228 hash_value_type ComputeHash(StringRef K);
|
/external/clang/include/clang/Analysis/ |
D | ProgramPoint.h | 163 return ID.ComputeHash(); in getHashValue()
|
/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 58 HashValue = ID.ComputeHash(); 78 static unsigned ComputeHash(const SDVTListNode &X, FoldingSetNodeID &TempID) {
|
/external/clang/tools/libclang/ |
D | Indexing.cpp | 137 return ID.ComputeHash();
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 2082 return ID.ComputeHash(); in getHashValue()
|