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...]
ValueMap.h 261 static unsigned getHashValue(const VH &Val) {
262 return PointerInfo::getHashValue(Val.Unwrap());
264 static unsigned getHashValue(const KeyT &Val) {
265 return PointerInfo::getHashValue(Val);
ImmutableList.h 213 static unsigned getHashValue(ImmutableList<T> X) {
DenseMap.h 122 /// getHashValue(LookupKeyT) and isEqual(LookupKeyT, KeyT) for each key
331 static unsigned getHashValue(const KeyT &Val) {
332 return KeyInfoT::getHashValue(Val);
335 static unsigned getHashValue(const LookupKeyT &Val) {
336 return KeyInfoT::getHashValue(Val);
481 unsigned BucketNo = getHashValue(Val) & (NumBuckets-1);
PointerIntPair.h 168 static unsigned getHashValue(Ty V) {
  /external/clang/include/clang/AST/
BaseSubobject.h 68 static unsigned getHashValue(const clang::BaseSubobject &Base) {
70 return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(),
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 211 static unsigned getHashValue(const clang::CharUnits &CU) {
213 return DenseMapInfo<clang::CharUnits::QuantityType>::getHashValue(Quantity);
DeclarationName.h 577 static unsigned getHashValue(clang::DeclarationName Name) {
578 return DenseMapInfo<void*>::getHashValue(Name.getAsOpaquePtr());
  /external/llvm/lib/IR/
LLVMContextImpl.h 61 static unsigned getHashValue(const KeyTy &Key) {
89 static unsigned getHashValue(const KeyTy &Key) {
123 static unsigned getHashValue(const KeyTy& Key) {
128 static unsigned getHashValue(const StructType *ST) {
129 return getHashValue(KeyTy(ST));
171 static unsigned getHashValue(const KeyTy& Key) {
177 static unsigned getHashValue(const FunctionType *FT) {
178 return getHashValue(KeyTy(FT));
DebugLoc.cpp 153 unsigned DenseMapInfo<DebugLoc>::getHashValue(const DebugLoc &Key) {
  /external/llvm/include/llvm/Support/
DebugLoc.h 107 static unsigned getHashValue(const DebugLoc &Key);
ValueHandle.h 261 static unsigned getHashValue(const AssertingVH<T> &Val) {
262 return PointerInfo::getHashValue(Val);
  /external/clang/include/clang/Basic/
SourceLocation.h 56 unsigned getHashValue() const { return static_cast<unsigned>(ID); }
409 static unsigned getHashValue(clang::FileID S) {
410 return S.getHashValue();
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 570 static unsigned getHashValue(const AliasAnalysis::Location &Val) {
571 return DenseMapInfo<const Value *>::getHashValue(Val.Ptr) ^
572 DenseMapInfo<uint64_t>::getHashValue(Val.Size) ^
573 DenseMapInfo<const MDNode *>::getHashValue(Val.TBAATag);
  /external/llvm/unittests/ADT/
DenseMapTest.cpp 63 static unsigned getHashValue(const CtorTester &Val) {
297 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; }
298 static unsigned getHashValue(const char* Val) {
336 static unsigned getHashValue(const unsigned& Val) { return Val; }
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 39 return DenseMapInfo<const void*>::getHashValue(V);
87 static unsigned getHashValue(SimpleValue Val);
92 unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) {
235 static unsigned getHashValue(CallValue Val);
239 unsigned DenseMapInfo<CallValue>::getHashValue(CallValue Val) {
  /external/clang/include/clang/Sema/
ScopeInfo.h 210 static unsigned getHashValue(const WeakObjectProfileTy &Val) {
212 return llvm::DenseMapInfo<Pair>::getHashValue(Pair(Val.Base,
  /external/clang/include/clang/Analysis/
ProgramPoint.h 160 unsigned getHashValue() const {
673 static unsigned getHashValue(const clang::ProgramPoint &Loc) {
674 return Loc.getHashValue();
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 570 unsigned getHashValue() const {
652 getHashValue(clang::ento::CheckerManager::CachedStmtCheckersKey S) {
653 return S.getHashValue();
  /external/clang/lib/Basic/
IdentifierTable.cpp 289 unsigned llvm::DenseMapInfo<clang::Selector>::getHashValue(clang::Selector S) {
290 return DenseMapInfo<void*>::getHashValue(S.getAsOpaquePtr());
  /external/clang/tools/libclang/
IndexingContext.h 539 static unsigned getHashValue(clang::cxindex::RefFileOccurence S) {
541 return DenseMapInfo<PairTy>::getHashValue(PairTy(S.File, S.Dcl));
  /external/llvm/lib/Support/
SmallPtrSet.cpp 106 unsigned Bucket = DenseMapInfo<void *>::getHashValue(Ptr) & (CurArraySize-1);
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 63 static unsigned getHashValue(const DivOpInfo &Val) {

Completed in 230 milliseconds

1 2