/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 | 346 static unsigned getHashValue(const KeyT &Val) { in getHashValue() function 347 return KeyInfoT::getHashValue(Val); in getHashValue() 350 static unsigned getHashValue(const LookupKeyT &Val) { in getHashValue() function 351 return KeyInfoT::getHashValue(Val); in getHashValue() 496 unsigned BucketNo = getHashValue(Val) & (NumBuckets-1); in LookupBucketFor()
|
D | PointerUnion.h | 497 static unsigned getHashValue(const Pair &PairVal) { 499 return DenseMapInfo<intptr_t>::getHashValue(key);
|
/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 60 static unsigned getHashValue(const APInt &Key) { in getHashValue() function 71 static unsigned getHashValue(const APFloat &Key) { in getHashValue() function 104 static unsigned getHashValue(const KeyTy& Key) { in getHashValue() function 109 static unsigned getHashValue(const StructType *ST) { in getHashValue() function 110 return getHashValue(KeyTy(ST)); in getHashValue() 151 static unsigned getHashValue(const KeyTy& Key) { in getHashValue() function 157 static unsigned getHashValue(const FunctionType *FT) { in getHashValue() function 158 return getHashValue(KeyTy(FT)); in getHashValue() 224 unsigned getHashValue() const { return getHash(); } 250 unsigned getHashValue() const { [all …]
|
D | ConstantsContext.h | 527 static unsigned getHashValue(const ConstantClass *CP) { 529 return getHashValue(LookupKey(CP->getType(), ValType(CP, Storage))); 534 static unsigned getHashValue(const LookupKey &Val) {
|
/external/llvm/include/llvm/CodeGen/PBQP/ |
D | CostAllocator.h | 56 static unsigned getHashValue(const ValueKeyT &C) { in getHashValue() function 60 static unsigned getHashValue(PoolEntry *P) { in getHashValue() function 61 return getHashValue(P->getValue()); in getHashValue() 64 static unsigned getHashValue(const PoolEntry *P) { in getHashValue() function 65 return getHashValue(P->getValue()); in getHashValue()
|
/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/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/llvm/unittests/ADT/ |
D | DenseSetTest.cpp | 33 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; } in getHashValue() function 34 static unsigned getHashValue(const char* Val) { in getHashValue() function
|
D | DenseMapTest.cpp | 64 static unsigned getHashValue(const CtorTester &Val) { in getHashValue() function 331 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; } in getHashValue() function 332 static unsigned getHashValue(const char* Val) { in getHashValue() function 370 static unsigned getHashValue(const unsigned& Val) { return Val; } in getHashValue() function
|
/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 | 583 static unsigned getHashValue(clang::DeclarationName Name) { 584 return DenseMapInfo<void*>::getHashValue(Name.getAsOpaquePtr());
|
/external/llvm/include/llvm/Linker/ |
D | Linker.h | 40 static unsigned getHashValue(const KeyTy &Key); 41 static unsigned getHashValue(const StructType *ST);
|
/external/llvm/include/llvm/IR/ |
D | ValueMap.h | 282 static unsigned getHashValue(const VH &Val) { 283 return DenseMapInfo<KeyT>::getHashValue(Val.Unwrap()); 285 static unsigned getHashValue(const KeyT &Val) { 286 return DenseMapInfo<KeyT>::getHashValue(Val);
|
D | ValueHandle.h | 247 static unsigned getHashValue(const AssertingVH<T> &Val) { 248 return DenseMapInfo<Value *>::getHashValue(Val.getRawValPtr());
|
D | Metadata.h | 568 static unsigned getHashValue(const AAMDNodes &Val) { 569 return DenseMapInfo<MDNode *>::getHashValue(Val.TBAA) ^ 570 DenseMapInfo<MDNode *>::getHashValue(Val.Scope) ^ 571 DenseMapInfo<MDNode *>::getHashValue(Val.NoAlias);
|
/external/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 611 static unsigned getHashValue(const AliasAnalysis::Location &Val) { 612 return DenseMapInfo<const Value *>::getHashValue(Val.Ptr) ^ 613 DenseMapInfo<uint64_t>::getHashValue(Val.Size) ^ 614 DenseMapInfo<AAMDNodes>::getHashValue(Val.AATags);
|
/external/clang/include/clang/Basic/ |
D | SourceLocation.h | 56 unsigned getHashValue() const { return static_cast<unsigned>(ID); } in getHashValue() function 408 static unsigned getHashValue(clang::FileID S) { 409 return S.getHashValue();
|
/external/llvm/include/llvm/ProfileData/ |
D | SampleProf.h | 90 static inline unsigned getHashValue(sampleprof::LineLocation Val) { 91 return DenseMapInfo<std::pair<int, unsigned>>::getHashValue(
|
/external/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 85 static unsigned getHashValue(SimpleValue Val); 90 unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) { in getHashValue() function in DenseMapInfo 232 static unsigned getHashValue(CallValue Val); 237 unsigned DenseMapInfo<CallValue>::getHashValue(CallValue Val) { in getHashValue() function in DenseMapInfo
|
/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();
|