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

1 2

  /external/clang/include/clang/AST/
TypeOrdering.h 46 static unsigned getHashValue(clang::QualType Val) {
66 static unsigned getHashValue(clang::CanQualType Val) {
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());
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);
  /external/clang/lib/Index/
GlobalSelector.cpp 69 llvm::DenseMapInfo<GlobalSelector>::getHashValue(GlobalSelector Sel) {
70 return DenseMapInfo<void*>::getHashValue(Sel.getAsOpaquePtr());
Entity.cpp 268 llvm::DenseMapInfo<Entity>::getHashValue(Entity E) {
269 return DenseMapInfo<void*>::getHashValue(E.getAsOpaquePtr());
  /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...]
ImmutableList.h 214 static unsigned getHashValue(ImmutableList<T> X) {
DenseMap.h 310 static unsigned getHashValue(const KeyT &Val) {
311 return KeyInfoT::getHashValue(Val);
325 unsigned BucketNo = getHashValue(Val);
ValueMap.h 258 static unsigned getHashValue(const VH &Val) {
259 return PointerInfo::getHashValue(Val.Unwrap());
  /external/llvm/lib/VMCore/
DebugLoc.cpp 175 unsigned DenseMapInfo<DebugLoc>::getHashValue(const DebugLoc &Key) {
LLVMContextImpl.h 57 static unsigned getHashValue(const KeyTy &Key) {
58 return DenseMapInfo<void*>::getHashValue(Key.type) ^
59 Key.val.getHashValue();
84 static unsigned getHashValue(const KeyTy &Key) {
85 return Key.val.getHashValue();
  /external/clang/lib/AST/
DeclarationName.cpp 482 getHashValue(clang::DeclarationName N) {
483 return DenseMapInfo<void*>::getHashValue(N.getAsOpaquePtr());
  /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/include/llvm/Support/
ValueHandle.h 251 static unsigned getHashValue(const AssertingVH<T> &Val) {
252 return PointerInfo::getHashValue(Val);
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 36 return DenseMapInfo<const void*>::getHashValue(V);
84 static unsigned getHashValue(SimpleValue Val);
89 unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) {
177 static unsigned getHashValue(CallValue Val);
181 unsigned DenseMapInfo<CallValue>::getHashValue(CallValue Val) {
  /external/clang/include/clang/Analysis/
ProgramPoint.h 94 unsigned getHashValue() const {
411 static unsigned getHashValue(const clang::ProgramPoint &Loc) {
412 return Loc.getHashValue();
  /external/clang/include/clang/Basic/
SourceLocation.h 53 unsigned getHashValue() const { return static_cast<unsigned>(ID); }
395 static unsigned getHashValue(clang::FileID S) {
396 return S.getHashValue();
  /external/clang/lib/Basic/
IdentifierTable.cpp 271 unsigned llvm::DenseMapInfo<clang::Selector>::getHashValue(clang::Selector S) {
272 return DenseMapInfo<void*>::getHashValue(S.getAsOpaquePtr());
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 479 unsigned getHashValue() const {
558 getHashValue(clang::ento::CheckerManager::CachedStmtCheckersKey S) {
559 return S.getHashValue();
  /external/clang/tools/libclang/
CXCursor.cpp 957 static inline unsigned getHashValue(const CXCursor &cursor) {
959 ::getHashValue(std::make_pair(cursor.data[0], cursor.data[1]));
    [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 320 static unsigned getHashValue(const LVIValueHandle &Val) {
321 return PointerInfo::getHashValue(Val);
341 static unsigned getHashValue( const PairTy &Val) {
342 return APointerInfo::getHashValue(Val.first) ^
343 BPointerInfo::getHashValue(Val.second);
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 142 static unsigned getHashValue(const ComparableFunction &CF) {
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 597 static unsigned getHashValue(const LoweredPHIRecord &Val) {
598 return DenseMapInfo<PHINode*>::getHashValue(Val.PN) ^ (Val.Shift>>3) ^
    [all...]
  /external/llvm/include/llvm/CodeGen/
SlotIndexes.h 107 static inline unsigned getHashValue(const SlotIndex &v) {
303 static inline unsigned getHashValue(const SlotIndex &v) {
304 return SlotIndex::getHashValue(v);

Completed in 353 milliseconds

1 2