HomeSort by: relevance | last modified time | path
    Searched refs:ComputeHash (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderInternals.h 94 static hash_value_type ComputeHash(const internal_key_type &Key) {
142 static hash_value_type ComputeHash(const internal_key_type& a);
219 static hash_value_type ComputeHash(Selector Sel);
270 static hash_value_type ComputeHash(internal_key_ref ikey);
ASTCommon.h 73 unsigned ComputeHash(Selector Sel);
MultiOnDiskHashTable.h 238 auto KeyHash = Info::ComputeHash(Key);
ASTCommon.cpp 273 unsigned serialization::ComputeHash(Selector Sel) {
GlobalModuleIndex.cpp 85 static hash_value_type ComputeHash(const internal_key_type& a) {
729 static hash_value_type ComputeHash(key_type_ref Key) {
ASTWriter.cpp 1661 hash_value_type ComputeHash(key_type_ref key) {
3009 static hash_value_type ComputeHash(Selector Sel) {
3010 return serialization::ComputeHash(Sel);
3308 static hash_value_type ComputeHash(const IdentifierInfo* II) {
3549 hash_value_type ComputeHash(DeclarationNameKey Name) {
ASTReader.cpp 847 unsigned ASTSelectorLookupTrait::ComputeHash(Selector Sel) {
848 return serialization::ComputeHash(Sel);
913 unsigned ASTIdentifierLookupTraitBase::ComputeHash(const internal_key_type& a) {
1082 ID.AddInteger(serialization::ComputeHash(Selector(Data)));
1094 return ID.ComputeHash();
1822 unsigned HeaderFileInfoTrait::ComputeHash(internal_key_ref ikey) {
2023 : Name(Name), NameHash(ASTIdentifierLookupTrait::ComputeHash(Name)),
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
FoldingSet.h 243 // ComputeHash - Compute a hash value for X, using TempID to
248 static inline unsigned ComputeHash(T &X, FoldingSetNodeID &TempID);
270 static inline unsigned ComputeHash(T &X, FoldingSetNodeID &TempID,
293 /// ComputeHash - Compute a strong hash value for this FoldingSetNodeIDRef,
295 unsigned ComputeHash() const;
343 /// ComputeHash - Compute a strong hash value for this FoldingSetNodeID, used
345 unsigned ComputeHash() const;
382 DefaultFoldingSetTrait<T>::ComputeHash(T &X, FoldingSetNodeID &TempID) {
384 return TempID.ComputeHash();
398 DefaultContextualFoldingSetTrait<T, Ctx>::ComputeHash(T &X
    [all...]
ImmutableSet.h 306 digest += ID.ComputeHash();
  /src/external/apache2/llvm/dist/llvm/lib/Support/
FoldingSet.cpp 28 /// ComputeHash - Compute a strong hash value for this FoldingSetNodeIDRef,
30 unsigned FoldingSetNodeIDRef::ComputeHash() const {
148 /// ComputeHash - Compute a strong hash value for this FoldingSetNodeID, used to
150 unsigned FoldingSetNodeID::ComputeHash() const {
151 return FoldingSetNodeIDRef(Bits.data(), Bits.size()).ComputeHash();
328 unsigned IDHash = ID.ComputeHash();
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProf.h 405 uint64_t ComputeHash(StringRef K);
481 IndexedInstrProf::ComputeHash(FuncName), Ins.first->getKey()));
954 inline uint64_t ComputeHash(HashT Type, StringRef K) {
995 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); }
InstrProfReader.h 342 hash_value_type ComputeHash(StringRef K);
InstrProfData.inc 74 IndexedInstrProf::ComputeHash(getPGOFuncNameVarInitializer(Inc->getName()))))
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
OnDiskHashTable.h 45 /// static hash_value_type ComputeHash(key_type_ref Key);
70 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {}
135 unsigned Hash = InfoObj.ComputeHash(Key);
254 /// static hash_value_type ComputeHash(internal_key_type &IKey);
345 hash_value_type KeyHash = InfoObj.ComputeHash(IKey);
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProfWriter.cpp 108 static hash_value_type ComputeHash(key_type_ref K) {
109 return IndexedInstrProf::ComputeHash(K);
InstrProfReader.cpp 233 Value = IndexedInstrProf::ComputeHash(VD.first);
517 InstrProfLookupTrait::ComputeHash(StringRef K) {
518 return IndexedInstrProf::ComputeHash(HashType, K);
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SMTConstraintManager.h 335 unsigned hash = ID.ComputeHash();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ScalarEvolution.h 177 static unsigned ComputeHash(const SCEV &X, FoldingSetNodeID &TempID) {
178 return X.FastID.ComputeHash();
259 static unsigned ComputeHash(const SCEVPredicate &X,
261 return X.FastID.ComputeHash();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CoverageMappingGen.cpp 1644 const uint64_t NameHash = llvm::IndexedInstrProf::ComputeHash(NameValue);
1699 const int64_t FilenamesRef = llvm::IndexedInstrProf::ComputeHash(Filenames);
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
ProgramPoint.h 191 return ID.ComputeHash();
  /src/external/apache2/llvm/dist/clang/lib/AST/
ODRHash.cpp 233 return ID.ComputeHash();
  /src/external/apache2/llvm/dist/clang/tools/libclang/
Indexing.cpp 111 return ID.ComputeHash();
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAG.h 105 HashValue = ID.ComputeHash();
128 static unsigned ComputeHash(const SDVTListNode &X, FoldingSetNodeID &TempID) {
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
CoverageMappingReader.cpp 649 llvm::IndexedInstrProf::ComputeHash(FilenameRegion);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 487 return ID.ComputeHash();

Completed in 78 milliseconds

1 2