Searched refs:getEmptyKey (Results 1 - 25 of 42) sorted by relevance

12

/external/llvm/include/llvm/ADT/
H A DDenseMapInfo.h24 //static inline T getEmptyKey();
33 static inline T* getEmptyKey() { function in struct:llvm::DenseMapInfo
52 static inline char getEmptyKey() { return ~0; } function in struct:llvm::DenseMapInfo
62 static inline unsigned getEmptyKey() { return ~0U; } function in struct:llvm::DenseMapInfo
72 static inline unsigned long getEmptyKey() { return ~0UL; } function in struct:llvm::DenseMapInfo
84 static inline unsigned long long getEmptyKey() { return ~0ULL; } function in struct:llvm::DenseMapInfo
97 static inline int getEmptyKey() { return 0x7fffffff; } function in struct:llvm::DenseMapInfo
107 static inline long getEmptyKey() { function in struct:llvm::DenseMapInfo
110 static inline long getTombstoneKey() { return getEmptyKey() - 1L; }
121 static inline long long getEmptyKey() { retur function in struct:llvm::DenseMapInfo
139 static inline Pair getEmptyKey() { function in struct:llvm::DenseMapInfo
[all...]
H A DDenseMap.h89 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey();
251 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey();
270 const KeyT EmptyKey = getEmptyKey();
279 const KeyT EmptyKey = getEmptyKey();
319 if (!KeyInfoT::isEqual(getBuckets()[i].first, getEmptyKey()) &&
337 static const KeyT getEmptyKey() { function in class:llvm::DenseMapBase
338 return KeyInfoT::getEmptyKey();
447 const KeyT EmptyKey = getEmptyKey();
471 const KeyT EmptyKey = getEmptyKey();
735 const KeyT EmptyKey = this->getEmptyKey();
[all...]
H A DPointerUnion.h485 static inline Pair getEmptyKey() { function in struct:llvm::DenseMapInfo
486 return Pair(FirstInfo::getEmptyKey());
H A DImmutableList.h207 static inline ImmutableList<T> getEmptyKey() { function in struct:llvm::DenseMapInfo
H A DPointerIntPair.h163 static Ty getEmptyKey() {
/external/clang/include/clang/AST/
H A DBaseSubobject.h56 static clang::BaseSubobject getEmptyKey() { function in struct:llvm::DenseMapInfo
58 DenseMapInfo<const clang::CXXRecordDecl *>::getEmptyKey(),
59 clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getEmptyKey()));
H A DTypeOrdering.h41 static inline clang::QualType getEmptyKey() { return clang::QualType(); } function in struct:llvm::DenseMapInfo
59 static inline clang::CanQualType getEmptyKey() { function in struct:llvm::DenseMapInfo
H A DCharUnits.h191 static clang::CharUnits getEmptyKey() { function in struct:llvm::DenseMapInfo
193 DenseMapInfo<clang::CharUnits::QuantityType>::getEmptyKey();
H A DGlobalDecl.h97 static inline clang::GlobalDecl getEmptyKey() { function in struct:llvm::DenseMapInfo
/external/llvm/include/llvm/IR/
H A DDebugLoc.h32 /// getEmptyKey() - A private constructor that returns an unknown that is
34 static DebugLoc getEmptyKey() { function in class:llvm::DebugLoc
116 static DebugLoc getEmptyKey() { return DebugLoc::getEmptyKey(); } function in struct:llvm::DenseMapInfo
H A DValueHandle.h110 V != DenseMapInfo<Value *>::getEmptyKey() &&
242 static inline AssertingVH<T> getEmptyKey() { function in struct:llvm::DenseMapInfo
243 return AssertingVH<T>(PointerInfo::getEmptyKey());
H A DValueMap.h258 static inline VH getEmptyKey() { function in struct:llvm::DenseMapInfo
259 return VH(PointerInfo::getEmptyKey(), nullptr);
H A DAttributes.h370 static inline AttributeSet getEmptyKey() { function in struct:llvm::AttributeSet::DenseMapInfo
/external/clang/lib/CodeGen/
H A DCodeGenTBAA.h130 static clang::CodeGen::TBAAPathTag getEmptyKey() { function in struct:llvm::DenseMapInfo
132 DenseMapInfo<const clang::Type *>::getEmptyKey(),
133 DenseMapInfo<const MDNode *>::getEmptyKey(),
134 DenseMapInfo<uint64_t>::getEmptyKey());
/external/llvm/lib/IR/
H A DLLVMContextImpl.h62 static inline KeyTy getEmptyKey() { return KeyTy(APInt(1,0), nullptr); } function in struct:llvm::DenseMapAPIntKeyInfo
86 static inline KeyTy getEmptyKey() { function in struct:llvm::DenseMapAPFloatKeyInfo
120 static inline StructType* getEmptyKey() { function in struct:llvm::AnonStructTypeKeyInfo
121 return DenseMapInfo<StructType*>::getEmptyKey();
135 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
168 static inline FunctionType* getEmptyKey() { function in struct:llvm::FunctionTypeKeyInfo
169 return DenseMapInfo<FunctionType*>::getEmptyKey();
184 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
H A DConstantsContext.h652 static inline ConstantClass* getEmptyKey() { function in struct:llvm::ConstantAggrUniqueMap::MapInfo
653 return ConstantClassInfo::getEmptyKey();
673 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp58 return Inst == DenseMapInfo<Instruction*>::getEmptyKey() ||
77 static inline SimpleValue getEmptyKey() { function in struct:llvm::DenseMapInfo
78 return DenseMapInfo<Instruction*>::getEmptyKey();
201 return Inst == DenseMapInfo<Instruction*>::getEmptyKey() ||
220 static inline CallValue getEmptyKey() { function in struct:llvm::DenseMapInfo
221 return DenseMapInfo<Instruction*>::getEmptyKey();
H A DSampleProfile.cpp88 static inline InstructionLocation getEmptyKey() { function in struct:llvm::DenseMapInfo
89 return InstructionLocation(OffsetInfo::getEmptyKey(),
90 DiscriminatorInfo::getEmptyKey());
/external/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h47 TBAAInfo(DenseMapInfo<const MDNode *>::getEmptyKey()) {}
62 if (TBAAInfo == DenseMapInfo<const MDNode *>::getEmptyKey())
76 if (TBAAInfo == DenseMapInfo<const MDNode *>::getEmptyKey() ||
H A DAliasAnalysis.h568 static inline AliasAnalysis::Location getEmptyKey() { function in struct:llvm::DenseMapInfo
570 AliasAnalysis::Location(DenseMapInfo<const Value *>::getEmptyKey(),
/external/llvm/unittests/ADT/
H A DDenseMapTest.cpp61 static inline CtorTester getEmptyKey() { return CtorTester(-1); }
323 static inline unsigned getEmptyKey() { return ~0; } function in struct:__anon25602::TestDenseMapInfo
362 static inline unsigned getEmptyKey() { return ~0; } function in struct:__anon25602::ContiguousDenseMapInfo
/external/llvm/include/llvm/CodeGen/
H A DMachineInstr.h1150 static inline MachineInstr *getEmptyKey() {
1162 if (RHS == getEmptyKey() || RHS == getTombstoneKey() ||
1163 LHS == getEmptyKey() || LHS == getTombstoneKey())
/external/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp56 static DivOpInfo getEmptyKey() { function in struct:llvm::DenseMapInfo
/external/clang/include/clang/Analysis/
H A DProgramPoint.h677 static inline clang::ProgramPoint getEmptyKey() { function in struct:llvm::DenseMapInfo
679 reinterpret_cast<uintptr_t>(DenseMapInfo<void*>::getEmptyKey()) & ~0x7;
/external/clang/include/clang/Basic/
H A DSourceLocation.h402 static inline clang::FileID getEmptyKey() { function in struct:clang::llvm::DenseMapInfo

Completed in 586 milliseconds

12