HomeSort by relevance Sort by last modified time
    Searched refs:getHashValue (Results 1 - 25 of 47) 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...]
ImmutableList.h 214 static unsigned getHashValue(ImmutableList<T> X) {
PointerIntPair.h 136 static unsigned getHashValue(Ty V) {
ValueMap.h 258 static unsigned getHashValue(const VH &Val) {
259 return PointerInfo::getHashValue(Val.Unwrap());
DenseMap.h 310 static unsigned getHashValue(const KeyT &Val) {
311 return KeyInfoT::getHashValue(Val);
325 unsigned BucketNo = getHashValue(Val);
SparseBitVector.h 269 uint64_t getHashValue() const {
818 uint64_t getHashValue() const {
824 HashVal ^= Iter->getHashValue();
  /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);
  /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/lib/VMCore/
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/include/clang/Index/
GlobalSelector.h 87 static unsigned getHashValue(clang::idx::GlobalSelector);
Entity.h 136 static unsigned getHashValue(clang::idx::Entity);
  /external/llvm/include/llvm/Support/
DebugLoc.h 108 static unsigned getHashValue(const DebugLoc &Key);
ValueHandle.h 251 static unsigned getHashValue(const AssertingVH<T> &Val) {
252 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 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/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/include/clang/Analysis/
ProgramPoint.h 94 unsigned getHashValue() const {
411 static unsigned getHashValue(const clang::ProgramPoint &Loc) {
412 return Loc.getHashValue();
  /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/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 479 unsigned getHashValue() const {
558 getHashValue(clang::ento::CheckerManager::CachedStmtCheckersKey S) {
559 return S.getHashValue();
  /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);
  /external/clang/lib/AST/
DeclarationName.cpp 482 getHashValue(clang::DeclarationName N) {
483 return DenseMapInfo<void*>::getHashValue(N.getAsOpaquePtr());

Completed in 314 milliseconds

1 2