/external/llvm/include/llvm/ADT/ |
D | DenseMapInfo.h | 33 static inline T* getEmptyKey() { 52 static inline char getEmptyKey() { return ~0; } 62 static inline unsigned getEmptyKey() { return ~0U; } 72 static inline unsigned long getEmptyKey() { return ~0UL; } 84 static inline unsigned long long getEmptyKey() { return ~0ULL; } 97 static inline int getEmptyKey() { return 0x7fffffff; } 107 static inline long getEmptyKey() { 110 static inline long getTombstoneKey() { return getEmptyKey() - 1L; } 121 static inline long long getEmptyKey() { return 0x7fffffffffffffffLL; } 139 static inline Pair getEmptyKey() { [all …]
|
D | DenseMap.h | 66 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in ~DenseMap() 116 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear() 259 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in CopyFrom() 292 if (!KeyInfoT::isEqual(Buckets[i].first, getEmptyKey()) && in CopyFrom() 320 if (!KeyInfoT::isEqual(TheBucket->first, getEmptyKey())) in InsertIntoBucket() 335 static const KeyT getEmptyKey() { in getEmptyKey() function 336 return KeyInfoT::getEmptyKey(); in getEmptyKey() 359 const KeyT EmptyKey = getEmptyKey(); in LookupBucketFor() 408 const KeyT EmptyKey = getEmptyKey(); in init() 427 const KeyT EmptyKey = getEmptyKey(); in grow() [all …]
|
D | ValueMap.h | 250 static inline VH getEmptyKey() { 251 return VH(PointerInfo::getEmptyKey(), NULL);
|
D | PointerIntPair.h | 130 static Ty getEmptyKey() {
|
D | ImmutableList.h | 208 static inline ImmutableList<T> getEmptyKey() {
|
/external/llvm/lib/VMCore/ |
D | LLVMContextImpl.h | 59 static inline KeyTy getEmptyKey() { return KeyTy(APInt(1,0), 0); } in getEmptyKey() function 84 static inline KeyTy getEmptyKey() { in getEmptyKey() function 120 static inline StructType* getEmptyKey() { in getEmptyKey() function 121 return DenseMapInfo<StructType*>::getEmptyKey(); in getEmptyKey() 135 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual() 172 static inline FunctionType* getEmptyKey() { in getEmptyKey() function 173 return DenseMapInfo<FunctionType*>::getEmptyKey(); in getEmptyKey() 188 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual()
|
D | DebugLoc.cpp | 167 DebugLoc DenseMapInfo<DebugLoc>::getEmptyKey() { in getEmptyKey() function in DenseMapInfo 168 return DebugLoc::getEmptyKey(); in getEmptyKey()
|
D | ConstantsContext.h | 653 static inline ConstantClass* getEmptyKey() { 654 return ConstantClassInfo::getEmptyKey(); 674 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
|
/external/clang/include/clang/AST/ |
D | BaseSubobject.h | 56 static clang::BaseSubobject getEmptyKey() { 58 DenseMapInfo<const clang::CXXRecordDecl *>::getEmptyKey(), 59 clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getEmptyKey()));
|
D | TypeOrdering.h | 39 static inline clang::QualType getEmptyKey() { return clang::QualType(); } 57 static inline clang::CanQualType getEmptyKey() {
|
D | CharUnits.h | 186 static clang::CharUnits getEmptyKey() { 188 DenseMapInfo<clang::CharUnits::QuantityType>::getEmptyKey();
|
D | GlobalDecl.h | 96 static inline clang::GlobalDecl getEmptyKey() {
|
D | DeclarationName.h | 559 static inline clang::DeclarationName getEmptyKey() {
|
/external/llvm/include/llvm/Support/ |
D | DebugLoc.h | 32 static DebugLoc getEmptyKey() { 106 static DebugLoc getEmptyKey();
|
D | ValueHandle.h | 109 V != DenseMapInfo<Value *>::getEmptyKey() && in isValid() 254 static inline AssertingVH<T> getEmptyKey() { 255 return AssertingVH<T>(PointerInfo::getEmptyKey());
|
/external/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 56 return Inst == DenseMapInfo<Instruction*>::getEmptyKey() || in isSentinel() 80 static inline SimpleValue getEmptyKey() { in getEmptyKey() function 81 return DenseMapInfo<Instruction*>::getEmptyKey(); in getEmptyKey() 149 return Inst == DenseMapInfo<Instruction*>::getEmptyKey() || in isSentinel() 173 static inline CallValue getEmptyKey() { in getEmptyKey() function 174 return DenseMapInfo<Instruction*>::getEmptyKey(); in getEmptyKey()
|
/external/llvm/include/llvm/Analysis/ |
D | AliasSetTracker.h | 48 TBAAInfo(DenseMapInfo<const MDNode *>::getEmptyKey()) {} in PointerRec() 63 if (TBAAInfo == DenseMapInfo<const MDNode *>::getEmptyKey()) in updateSizeAndTBAAInfo() 77 if (TBAAInfo == DenseMapInfo<const MDNode *>::getEmptyKey() || in getTBAAInfo()
|
D | AliasAnalysis.h | 535 static inline AliasAnalysis::Location getEmptyKey() { 537 AliasAnalysis::Location(DenseMapInfo<const Value *>::getEmptyKey(),
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineInstr.h | 932 static inline MachineInstr *getEmptyKey() { 944 if (RHS == getEmptyKey() || RHS == getTombstoneKey() || 945 LHS == getEmptyKey() || LHS == getTombstoneKey())
|
D | SlotIndexes.h | 149 static inline SlotIndex getEmptyKey() { 312 static inline SlotIndex getEmptyKey() { 313 return SlotIndex::getEmptyKey();
|
/external/clang/include/clang/Analysis/ |
D | ProgramPoint.h | 462 static inline clang::ProgramPoint getEmptyKey() { 464 reinterpret_cast<uintptr_t>(DenseMapInfo<void*>::getEmptyKey()) & ~0x7;
|
/external/llvm/unittests/ADT/ |
D | DenseMapTest.cpp | 182 static inline unsigned getEmptyKey() { return ~0; } in getEmptyKey() function
|
/external/clang/include/clang/Basic/ |
D | SourceLocation.h | 390 static inline clang::FileID getEmptyKey() {
|
/external/clang/include/clang/Serialization/ |
D | ASTBitCodes.h | 110 static inline QualType getEmptyKey() { in getEmptyKey() function
|
/external/llvm/lib/MC/ |
D | MCDwarf.cpp | 1339 static const CIEKey getEmptyKey() { return CIEKey(0, 0, -1, false); } in getEmptyKey() function 1357 static CIEKey getEmptyKey() { in getEmptyKey() function 1358 return CIEKey::getEmptyKey(); in getEmptyKey()
|