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

1 2 3

  /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 213 static unsigned getHashValue(ImmutableList<T> X) {
DenseMap.h 125 /// getHashValue(LookupKeyT) and isEqual(LookupKeyT, KeyT) for each key
330 static unsigned getHashValue(const KeyT &Val) {
331 return KeyInfoT::getHashValue(Val);
334 static unsigned getHashValue(const LookupKeyT &Val) {
335 return KeyInfoT::getHashValue(Val);
477 unsigned BucketNo = getHashValue(Val) & (NumBuckets-1);
PointerUnion.h 491 static unsigned getHashValue(const Pair &PairVal) {
493 return DenseMapInfo<intptr_t>::getHashValue(key);
  /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 48 static unsigned getHashValue(clang::QualType Val) {
68 static unsigned getHashValue(clang::CanQualType Val) {
GlobalDecl.h 106 static unsigned getHashValue(clang::GlobalDecl GD) {
107 return DenseMapInfo<void*>::getHashValue(GD.getAsOpaquePtr());
CharUnits.h 205 static unsigned getHashValue(const clang::CharUnits &CU) {
207 return DenseMapInfo<clang::CharUnits::QuantityType>::getHashValue(Quantity);
DeclarationName.h 582 static unsigned getHashValue(clang::DeclarationName Name) {
583 return DenseMapInfo<void*>::getHashValue(Name.getAsOpaquePtr());
  /external/clang/lib/CodeGen/
CodeGenTBAA.h 144 static unsigned getHashValue(const clang::CodeGen::TBAAPathTag &Val) {
145 return DenseMapInfo<const clang::Type *>::getHashValue(Val.BaseT) ^
146 DenseMapInfo<const MDNode *>::getHashValue(Val.AccessN) ^
147 DenseMapInfo<uint64_t>::getHashValue(Val.Offset);
  /external/skia/tools/
image_expectations.h 55 uint64_t getHashValue() const;
image_expectations.cpp 75 uint64_t ImageDigest::getHashValue() const {
152 Json::Value actualChecksumValue = Json::UInt64(digest.getHashValue());
198 Json::Value actualChecksumValue = Json::UInt64(digest.getHashValue());
  /external/llvm/lib/IR/
LLVMContextImpl.h 64 static unsigned getHashValue(const KeyTy &Key) {
92 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));
174 static unsigned getHashValue(const KeyTy& Key) {
180 static unsigned getHashValue(const FunctionType *FT) {
181 return getHashValue(KeyTy(FT));
  /external/chromium_org/third_party/skia/tools/
image_expectations.cpp 71 return (this->getHashValue() == other.getHashValue());
80 uint64_t ImageDigest::getHashValue() {
171 Json::Value actualChecksumValue = Json::UInt64(digest.getHashValue());
image_expectations.h 60 uint64_t getHashValue();
  /external/llvm/include/llvm/IR/
DebugLoc.h 118 static unsigned getHashValue(const DebugLoc &Key);
ValueMap.h 264 static unsigned getHashValue(const VH &Val) {
265 return PointerInfo::getHashValue(Val.Unwrap());
267 static unsigned getHashValue(const KeyT &Val) {
268 return PointerInfo::getHashValue(Val);
ValueHandle.h 248 static unsigned getHashValue(const AssertingVH<T> &Val) {
249 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 578 static unsigned getHashValue(const AliasAnalysis::Location &Val) {
579 return DenseMapInfo<const Value *>::getHashValue(Val.Ptr) ^
580 DenseMapInfo<uint64_t>::getHashValue(Val.Size) ^
581 DenseMapInfo<const MDNode *>::getHashValue(Val.TBAATag);
  /external/llvm/unittests/ADT/
DenseMapTest.cpp 63 static unsigned getHashValue(const CtorTester &Val) {
325 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; }
326 static unsigned getHashValue(const char* Val) {
364 static unsigned getHashValue(const unsigned& Val) { return Val; }
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 40 return DenseMapInfo<const void*>::getHashValue(V);
83 static unsigned getHashValue(SimpleValue Val);
88 unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) {
226 static unsigned getHashValue(CallValue Val);
230 unsigned DenseMapInfo<CallValue>::getHashValue(CallValue Val) {
  /external/clang/include/clang/Analysis/
ProgramPoint.h 160 unsigned getHashValue() const {
689 static unsigned getHashValue(const clang::ProgramPoint &Loc) {
690 return Loc.getHashValue();
  /external/clang/include/clang/Sema/
ScopeInfo.h 236 static unsigned getHashValue(const WeakObjectProfileTy &Val) {
238 return llvm::DenseMapInfo<Pair>::getHashValue(Pair(Val.Base,
  /external/clang/lib/Basic/
IdentifierTable.cpp 292 unsigned llvm::DenseMapInfo<clang::Selector>::getHashValue(clang::Selector S) {
293 return DenseMapInfo<void*>::getHashValue(S.getAsOpaquePtr());

Completed in 754 milliseconds

1 2 3