HomeSort by relevance Sort by last modified time
    Searched defs:getHashValue (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/clang/include/clang/AST/
TypeOrdering.h 48 static unsigned getHashValue(clang::QualType Val) {
68 static unsigned getHashValue(clang::CanQualType Val) {
BaseSubobject.h 67 static unsigned getHashValue(const clang::BaseSubobject &Base) {
69 return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(),
GlobalDecl.h 108 static unsigned getHashValue(clang::GlobalDecl GD) {
109 return DenseMapInfo<void*>::getHashValue(GD.getAsOpaquePtr());
ASTTypeTraits.h 105 static unsigned getHashValue(const ASTNodeKind &Val) { return Val.KindId; }
339 static unsigned getHashValue(const DynTypedNode &Val) {
CharUnits.h 230 static unsigned getHashValue(const clang::CharUnits &CU) {
232 return DenseMapInfo<clang::CharUnits::QuantityType>::getHashValue(Quantity);
  /external/llvm/unittests/ADT/
DenseSetTest.cpp 33 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; }
34 static unsigned getHashValue(const char* Val) {
DenseMapTest.cpp 64 static unsigned getHashValue(const CtorTester &Val) {
511 static unsigned getHashValue(const CachedHashTest &X) {
553 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; }
554 static unsigned getHashValue(const char* Val) {
592 static unsigned getHashValue(const unsigned& Val) { return Val; }
  /external/llvm/include/llvm/ADT/
DenseMapInfo.h 29 //static unsigned getHashValue(const T &Val);
35 Hash = DenseMapInfo<T>::getHashValue(Val);
52 static unsigned getHashValue(CachedHash<T> Val) {
76 static unsigned getHashValue(const T *PtrVal) {
87 static unsigned getHashValue(const char& Val) { return Val * 37U; }
97 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; }
107 static unsigned getHashValue(const unsigned long& Val) {
119 static unsigned getHashValue(const unsigned long long& Val) {
132 static unsigned getHashValue(const int& Val) { return (unsigned)(Val * 37U); }
144 static unsigned getHashValue(const long& Val)
    [all...]
ImmutableList.h 213 static unsigned getHashValue(ImmutableList<T> X) {
PointerUnion.h 459 static unsigned getHashValue(const Pair &PairVal) {
461 return DenseMapInfo<intptr_t>::getHashValue(key);
  /external/llvm/include/llvm/Analysis/
MemoryLocation.h 131 static unsigned getHashValue(const MemoryLocation &Val) {
132 return DenseMapInfo<const Value *>::getHashValue(Val.Ptr) ^
133 DenseMapInfo<uint64_t>::getHashValue(Val.Size) ^
134 DenseMapInfo<AAMDNodes>::getHashValue(Val.AATags);
  /external/llvm/tools/llvm-dwp/
DWPStringPool.h 19 static unsigned getHashValue(const char *Val) {
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
DenseMapInfo.h 26 //static unsigned getHashValue(const T &Val);
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)
    [all...]
ImmutableList.h 214 static unsigned getHashValue(ImmutableList<T> X) {
  /external/clang/lib/CodeGen/
CodeGenTBAA.h 141 static unsigned getHashValue(const clang::CodeGen::TBAAPathTag &Val) {
142 return DenseMapInfo<const clang::Type *>::getHashValue(Val.BaseT) ^
143 DenseMapInfo<const MDNode *>::getHashValue(Val.AccessN) ^
144 DenseMapInfo<uint64_t>::getHashValue(Val.Offset);
  /external/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 56 static unsigned getHashValue(const ValueKeyT &C) {
60 static unsigned getHashValue(PoolEntry *P) {
61 return getHashValue(P->getValue());
64 static unsigned getHashValue(const PoolEntry *P) {
65 return getHashValue(P->getValue());
  /external/llvm/lib/Analysis/
AliasAnalysisSummary.h 180 static unsigned getHashValue(const cflaa::InstantiatedValue &IV) {
181 return DenseMapInfo<std::pair<Value *, unsigned>>::getHashValue(
  /external/swiftshader/third_party/LLVM/lib/VMCore/
DebugLoc.cpp 175 unsigned DenseMapInfo<DebugLoc>::getHashValue(const DebugLoc &Key) {
  /external/llvm/include/llvm/IR/
Attributes.h 430 static unsigned getHashValue(AttributeSet AS) {
Dominators.h 59 static unsigned getHashValue(const BasicBlockEdge *V);
68 static unsigned getHashValue(const BasicBlockEdge &Edge) {
69 return hash_combine(BBInfo::getHashValue(Edge.getStart()),
70 BBInfo::getHashValue(Edge.getEnd()));
ValueHandle.h 255 static unsigned getHashValue(const AssertingVH<T> &Val) {
256 return DenseMapInfo<Value *>::getHashValue(Val.getRawValPtr());
  /external/llvm/lib/Target/X86/
X86OptimizeLEAs.cpp 116 static unsigned getHashValue(const MemOpKey &Val) {
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 64 static unsigned getHashValue(const DivOpInfo &Val) {
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
AliasAnalysis.h 545 static unsigned getHashValue(const AliasAnalysis::Location &Val) {
546 return DenseMapInfo<const Value *>::getHashValue(Val.Ptr) ^
547 DenseMapInfo<uint64_t>::getHashValue(Val.Size) ^
548 DenseMapInfo<const MDNode *>::getHashValue(Val.TBAATag);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
ValueHandle.h 251 static unsigned getHashValue(const AssertingVH<T> &Val) {
252 return PointerInfo::getHashValue(Val);

Completed in 741 milliseconds

1 2 3 4