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

1 2

  /external/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...]
DenseMap.h 152 /// getHashValue(LookupKeyT) and isEqual(LookupKeyT, KeyT) for each key
328 static unsigned getHashValue(const KeyT &Val) {
329 return KeyInfoT::getHashValue(Val);
332 static unsigned getHashValue(const LookupKeyT &Val) {
333 return KeyInfoT::getHashValue(Val);
348 unsigned BucketNo = getHashValue(Val);
ImmutableList.h 214 static unsigned getHashValue(ImmutableList<T> X) {
PointerIntPair.h 140 static unsigned getHashValue(Ty V) {
ValueMap.h 256 static unsigned getHashValue(const VH &Val) {
257 return PointerInfo::getHashValue(Val.Unwrap());
  /external/clang/include/clang/AST/
BaseSubobject.h 68 static unsigned getHashValue(const clang::BaseSubobject &Base) {
70 DenseMapInfo<const clang::CXXRecordDecl *>::getHashValue(Base.getBase()) ^
71 DenseMapInfo<int64_t>::getHashValue(Base.getBaseOffset().getQuantity());
TypeOrdering.h 46 static unsigned getHashValue(clang::QualType Val) {
66 static unsigned getHashValue(clang::CanQualType Val) {
GlobalDecl.h 105 static unsigned getHashValue(clang::GlobalDecl GD) {
106 return DenseMapInfo<void*>::getHashValue(GD.getAsOpaquePtr());
CharUnits.h 200 static unsigned getHashValue(const clang::CharUnits &CU) {
202 return DenseMapInfo<clang::CharUnits::QuantityType>::getHashValue(Quantity);
DeclarationName.h 567 static unsigned getHashValue(clang::DeclarationName);
  /external/llvm/lib/VMCore/
LLVMContextImpl.h 61 static unsigned getHashValue(const KeyTy &Key) {
90 static unsigned getHashValue(const KeyTy &Key) {
126 static unsigned getHashValue(const KeyTy& Key) {
131 static unsigned getHashValue(const StructType *ST) {
132 return getHashValue(KeyTy(ST));
178 static unsigned getHashValue(const KeyTy& Key) {
184 static unsigned getHashValue(const FunctionType *FT) {
185 return getHashValue(KeyTy(FT));
DebugLoc.cpp 175 unsigned DenseMapInfo<DebugLoc>::getHashValue(const DebugLoc &Key) {
  /external/llvm/include/llvm/Support/
DebugLoc.h 108 static unsigned getHashValue(const DebugLoc &Key);
ValueHandle.h 260 static unsigned getHashValue(const AssertingVH<T> &Val) {
261 return PointerInfo::getHashValue(Val);
  /external/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/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 38 return DenseMapInfo<const void*>::getHashValue(V);
86 static unsigned getHashValue(SimpleValue Val);
91 unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) {
179 static unsigned getHashValue(CallValue Val);
183 unsigned DenseMapInfo<CallValue>::getHashValue(CallValue Val) {
  /external/clang/include/clang/Basic/
SourceLocation.h 54 unsigned getHashValue() const { return static_cast<unsigned>(ID); }
397 static unsigned getHashValue(clang::FileID S) {
398 return S.getHashValue();
  /external/llvm/unittests/ADT/
DenseMapTest.cpp 184 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; }
185 static unsigned getHashValue(const char* Val) {
  /external/clang/include/clang/Analysis/
ProgramPoint.h 123 unsigned getHashValue() const {
474 static unsigned getHashValue(const clang::ProgramPoint &Loc) {
475 return Loc.getHashValue();
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 504 unsigned getHashValue() const {
583 getHashValue(clang::ento::CheckerManager::CachedStmtCheckersKey S) {
584 return S.getHashValue();
  /external/llvm/include/llvm/CodeGen/
SlotIndexes.h 137 static inline unsigned getHashValue(const SlotIndex &v) {
318 static inline unsigned getHashValue(const SlotIndex &v) {
319 return SlotIndex::getHashValue(v);
  /external/clang/lib/AST/
DeclarationName.cpp 486 getHashValue(clang::DeclarationName N) {
487 return DenseMapInfo<void*>::getHashValue(N.getAsOpaquePtr());
  /external/clang/lib/Basic/
IdentifierTable.cpp 282 unsigned llvm::DenseMapInfo<clang::Selector>::getHashValue(clang::Selector S) {
283 return DenseMapInfo<void*>::getHashValue(S.getAsOpaquePtr());
  /external/llvm/lib/Support/
SmallPtrSet.cpp 106 unsigned Bucket = DenseMapInfo<void *>::getHashValue(Ptr) & (CurArraySize-1);
  /external/clang/include/clang/Serialization/
ASTBitCodes.h 116 static inline unsigned getHashValue(QualType T) {
    [all...]

Completed in 408 milliseconds

1 2