/external/llvm/include/llvm/ADT/ |
D | DenseMapInfo.h | 36 static inline T* getEmptyKey() { 55 static inline char getEmptyKey() { return ~0; } 65 static inline unsigned getEmptyKey() { return ~0U; } 75 static inline unsigned long getEmptyKey() { return ~0UL; } 87 static inline unsigned long long getEmptyKey() { return ~0ULL; } 100 static inline int getEmptyKey() { return 0x7fffffff; } 110 static inline long getEmptyKey() { 113 static inline long getTombstoneKey() { return getEmptyKey() - 1L; } 124 static inline long long getEmptyKey() { return 0x7fffffffffffffffLL; } 142 static inline Pair getEmptyKey() { [all …]
|
D | DenseMap.h | 102 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear() 268 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in destroyAll() 283 const KeyT EmptyKey = getEmptyKey(); in initEmpty() 292 const KeyT EmptyKey = getEmptyKey(); in moveFromOldBuckets() 329 if (!KeyInfoT::isEqual(getBuckets()[i].getFirst(), getEmptyKey()) && in copyFrom() 343 static const KeyT getEmptyKey() { in getEmptyKey() function 344 return KeyInfoT::getEmptyKey(); in getEmptyKey() 456 const KeyT EmptyKey = getEmptyKey(); in InsertIntoBucketImpl() 480 const KeyT EmptyKey = getEmptyKey(); in LookupBucketFor() 747 const KeyT EmptyKey = this->getEmptyKey(); in swap() [all …]
|
D | PointerUnion.h | 491 static inline Pair getEmptyKey() { 492 return Pair(FirstInfo::getEmptyKey());
|
D | PointerIntPair.h | 166 static Ty getEmptyKey() {
|
D | ImmutableList.h | 207 static inline ImmutableList<T> getEmptyKey() {
|
/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 | 41 static inline clang::QualType getEmptyKey() { return clang::QualType(); } 59 static inline clang::CanQualType getEmptyKey() {
|
D | ASTTypeTraits.h | 97 static inline ASTNodeKind getEmptyKey() { return ASTNodeKind(); } in getEmptyKey() function 327 static inline DynTypedNode getEmptyKey() { 329 Node.NodeKind = ASTNodeKind::DenseMapInfo::getEmptyKey(); 356 auto Empty = ASTNodeKind::DenseMapInfo::getEmptyKey();
|
D | CharUnits.h | 209 static clang::CharUnits getEmptyKey() { 211 DenseMapInfo<clang::CharUnits::QuantityType>::getEmptyKey();
|
D | GlobalDecl.h | 97 static inline clang::GlobalDecl getEmptyKey() {
|
/external/clang/lib/CodeGen/ |
D | CodeGenTBAA.h | 130 static clang::CodeGen::TBAAPathTag getEmptyKey() { 132 DenseMapInfo<const clang::Type *>::getEmptyKey(), 133 DenseMapInfo<const MDNode *>::getEmptyKey(), 134 DenseMapInfo<uint64_t>::getEmptyKey());
|
/external/llvm/include/llvm/CodeGen/PBQP/ |
D | CostAllocator.h | 49 static inline PoolEntry* getEmptyKey() { return nullptr; } in getEmptyKey() function 76 if (P == getEmptyKey() || P == getTombstoneKey()) in isEqual() 82 if (P1 == getEmptyKey() || P1 == getTombstoneKey()) in isEqual()
|
/external/llvm/include/llvm/Analysis/ |
D | MemoryLocation.h | 125 static inline MemoryLocation getEmptyKey() { 126 return MemoryLocation(DenseMapInfo<const Value *>::getEmptyKey(), 0);
|
D | AliasSetTracker.h | 49 AAInfo(DenseMapInfo<AAMDNodes>::getEmptyKey()) {} in PointerRec() 64 if (AAInfo == DenseMapInfo<AAMDNodes>::getEmptyKey()) in updateSizeAndAAInfo() 78 if (AAInfo == DenseMapInfo<AAMDNodes>::getEmptyKey() || in getAAInfo()
|
/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 50 static inline APInt getEmptyKey() { in getEmptyKey() function 69 static inline APFloat getEmptyKey() { return APFloat(APFloat::Bogus, 1); } in getEmptyKey() function 98 static inline StructType* getEmptyKey() { in getEmptyKey() function 99 return DenseMapInfo<StructType*>::getEmptyKey(); in getEmptyKey() 113 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual() 145 static inline FunctionType* getEmptyKey() { in getEmptyKey() function 146 return DenseMapInfo<FunctionType*>::getEmptyKey(); in getEmptyKey() 161 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual() 841 static inline NodeTy *getEmptyKey() { 842 return DenseMapInfo<NodeTy *>::getEmptyKey(); [all …]
|
D | ConstantsContext.h | 558 static inline ConstantClass *getEmptyKey() { 559 return ConstantClassInfo::getEmptyKey(); 575 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
|
/external/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 61 return Inst == DenseMapInfo<Instruction *>::getEmptyKey() || in isSentinel() 80 static inline SimpleValue getEmptyKey() { in getEmptyKey() function 81 return DenseMapInfo<Instruction *>::getEmptyKey(); in getEmptyKey() 208 return Inst == DenseMapInfo<Instruction *>::getEmptyKey() || in isSentinel() 227 static inline CallValue getEmptyKey() { in getEmptyKey() function 228 return DenseMapInfo<Instruction *>::getEmptyKey(); in getEmptyKey()
|
/external/llvm/include/llvm/IR/ |
D | ValueHandle.h | 108 V != DenseMapInfo<Value *>::getEmptyKey() && in isValid() 245 static inline AssertingVH<T> getEmptyKey() { 247 Res.setRawValPtr(DenseMapInfo<Value *>::getEmptyKey());
|
D | ValueMap.h | 276 static inline VH getEmptyKey() { 277 return VH(DenseMapInfo<Value *>::getEmptyKey());
|
/external/llvm/unittests/ADT/ |
D | DenseSetTest.cpp | 31 static inline unsigned getEmptyKey() { return ~0; } in getEmptyKey() function
|
D | DenseMapTest.cpp | 62 static inline CtorTester getEmptyKey() { return CtorTester(-1); } in getEmptyKey() function 370 static inline unsigned getEmptyKey() { return ~0; } in getEmptyKey() function 409 static inline unsigned getEmptyKey() { return ~0; } in getEmptyKey() function
|
/external/llvm/include/llvm/Linker/ |
D | IRMover.h | 34 static StructType *getEmptyKey();
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineInstr.h | 1229 static inline MachineInstr *getEmptyKey() { 1241 if (RHS == getEmptyKey() || RHS == getTombstoneKey() || 1242 LHS == getEmptyKey() || LHS == getTombstoneKey())
|
/external/llvm/include/llvm/Target/ |
D | TargetInstrInfo.h | 1416 static inline TargetInstrInfo::RegSubRegPair getEmptyKey() { 1417 return TargetInstrInfo::RegSubRegPair(RegInfo::getEmptyKey(), 1418 RegInfo::getEmptyKey());
|
/external/clang/include/clang/Serialization/ |
D | ASTBitCodes.h | 108 static inline QualType getEmptyKey() { in getEmptyKey() function 1588 static clang::serialization::DeclarationNameKey getEmptyKey() {
|