/external/llvm/include/llvm/ADT/ |
D | DenseMapInfo.h | 43 static unsigned getHashValue(const T *PtrVal) { 54 static unsigned getHashValue(const char& Val) { return Val * 37U; } 64 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; } 74 static unsigned getHashValue(const unsigned long& Val) { 86 static unsigned getHashValue(const unsigned long long& Val) { 99 static unsigned getHashValue(const int& Val) { return (unsigned)(Val * 37U); } 111 static unsigned getHashValue(const long& Val) { 123 static unsigned getHashValue(const long long& Val) { 147 static unsigned getHashValue(const Pair& PairVal) { 148 uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32 [all …]
|
D | DenseMap.h | 330 static unsigned getHashValue(const KeyT &Val) { in getHashValue() function 331 return KeyInfoT::getHashValue(Val); in getHashValue() 334 static unsigned getHashValue(const LookupKeyT &Val) { in getHashValue() function 335 return KeyInfoT::getHashValue(Val); in getHashValue() 477 unsigned BucketNo = getHashValue(Val) & (NumBuckets-1); in LookupBucketFor()
|
D | PointerUnion.h | 491 static unsigned getHashValue(const Pair &PairVal) { 493 return DenseMapInfo<intptr_t>::getHashValue(key);
|
/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 64 static unsigned getHashValue(const KeyTy &Key) { in getHashValue() function 92 static unsigned getHashValue(const KeyTy &Key) { in getHashValue() function 126 static unsigned getHashValue(const KeyTy& Key) { in getHashValue() function 131 static unsigned getHashValue(const StructType *ST) { in getHashValue() function 132 return getHashValue(KeyTy(ST)); in getHashValue() 174 static unsigned getHashValue(const KeyTy& Key) { in getHashValue() function 180 static unsigned getHashValue(const FunctionType *FT) { in getHashValue() function 181 return getHashValue(KeyTy(FT)); in getHashValue()
|
D | ConstantsContext.h | 658 static unsigned getHashValue(const ConstantClass *CP) { 663 return getHashValue(LookupKey(CP->getType(), CPOperands)); 668 static unsigned getHashValue(const LookupKey &Val) {
|
/external/clang/lib/CodeGen/ |
D | CodeGenTBAA.h | 144 static unsigned getHashValue(const clang::CodeGen::TBAAPathTag &Val) { 145 return DenseMapInfo<const clang::Type *>::getHashValue(Val.BaseT) ^ 146 DenseMapInfo<const MDNode *>::getHashValue(Val.AccessN) ^ 147 DenseMapInfo<uint64_t>::getHashValue(Val.Offset);
|
/external/chromium_org/third_party/skia/tools/ |
D | image_expectations.cpp | 71 return (this->getHashValue() == other.getHashValue()); in equals() 80 uint64_t ImageDigest::getHashValue() { in getHashValue() function in sk_tools::ImageDigest 171 Json::Value actualChecksumValue = Json::UInt64(digest.getHashValue()); in add()
|
D | image_expectations.h | 60 uint64_t getHashValue();
|
/external/clang/include/clang/AST/ |
D | TypeOrdering.h | 48 static unsigned getHashValue(clang::QualType Val) { 68 static unsigned getHashValue(clang::CanQualType Val) {
|
D | BaseSubobject.h | 68 static unsigned getHashValue(const clang::BaseSubobject &Base) { 70 return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(),
|
D | GlobalDecl.h | 106 static unsigned getHashValue(clang::GlobalDecl GD) { 107 return DenseMapInfo<void*>::getHashValue(GD.getAsOpaquePtr());
|
D | CharUnits.h | 205 static unsigned getHashValue(const clang::CharUnits &CU) { 207 return DenseMapInfo<clang::CharUnits::QuantityType>::getHashValue(Quantity);
|
D | DeclarationName.h | 582 static unsigned getHashValue(clang::DeclarationName Name) { 583 return DenseMapInfo<void*>::getHashValue(Name.getAsOpaquePtr());
|
/external/skia/tools/ |
D | image_expectations.cpp | 75 uint64_t ImageDigest::getHashValue() const { in getHashValue() function in sk_tools::ImageDigest 152 Json::Value actualChecksumValue = Json::UInt64(digest.getHashValue()); in add() 198 Json::Value actualChecksumValue = Json::UInt64(digest.getHashValue()); in matchesExpectation()
|
D | image_expectations.h | 55 uint64_t getHashValue() const;
|
/external/llvm/include/llvm/IR/ |
D | ValueMap.h | 264 static unsigned getHashValue(const VH &Val) { 265 return PointerInfo::getHashValue(Val.Unwrap()); 267 static unsigned getHashValue(const KeyT &Val) { 268 return PointerInfo::getHashValue(Val);
|
D | DebugLoc.h | 118 static unsigned getHashValue(const DebugLoc &Key);
|
D | ValueHandle.h | 248 static unsigned getHashValue(const AssertingVH<T> &Val) { 249 return PointerInfo::getHashValue(Val);
|
/external/llvm/unittests/ADT/ |
D | DenseMapTest.cpp | 63 static unsigned getHashValue(const CtorTester &Val) { in getHashValue() function 325 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; } in getHashValue() function 326 static unsigned getHashValue(const char* Val) { in getHashValue() function 364 static unsigned getHashValue(const unsigned& Val) { return Val; } in getHashValue() function
|
/external/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 40 return DenseMapInfo<const void*>::getHashValue(V); in getHash() 83 static unsigned getHashValue(SimpleValue Val); 88 unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) { in getHashValue() function in DenseMapInfo 226 static unsigned getHashValue(CallValue Val); 230 unsigned DenseMapInfo<CallValue>::getHashValue(CallValue Val) { in getHashValue() function in DenseMapInfo
|
/external/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 578 static unsigned getHashValue(const AliasAnalysis::Location &Val) { 579 return DenseMapInfo<const Value *>::getHashValue(Val.Ptr) ^ 580 DenseMapInfo<uint64_t>::getHashValue(Val.Size) ^ 581 DenseMapInfo<const MDNode *>::getHashValue(Val.TBAATag);
|
/external/clang/include/clang/Basic/ |
D | SourceLocation.h | 56 unsigned getHashValue() const { return static_cast<unsigned>(ID); } in getHashValue() function 409 static unsigned getHashValue(clang::FileID S) { 410 return S.getHashValue();
|
/external/clang/include/clang/Analysis/ |
D | ProgramPoint.h | 160 unsigned getHashValue() const { in getHashValue() function 689 static unsigned getHashValue(const clang::ProgramPoint &Loc) { 690 return Loc.getHashValue();
|
/external/clang/include/clang/Sema/ |
D | ScopeInfo.h | 236 static unsigned getHashValue(const WeakObjectProfileTy &Val) { in getHashValue() function 238 return llvm::DenseMapInfo<Pair>::getHashValue(Pair(Val.Base, in getHashValue()
|
/external/clang/lib/Basic/ |
D | IdentifierTable.cpp | 292 unsigned llvm::DenseMapInfo<clang::Selector>::getHashValue(clang::Selector S) { in getHashValue() function in llvm::DenseMapInfo::Selector 293 return DenseMapInfo<void*>::getHashValue(S.getAsOpaquePtr()); in getHashValue()
|