Home
last modified time | relevance | path

Searched refs:getEmptyKey (Results 1 – 25 of 83) sorted by relevance

1234

/external/llvm/include/llvm/ADT/
DDenseMapInfo.h44 static CachedHash<T> getEmptyKey() {
45 T N = DenseMapInfo<T>::getEmptyKey();
53 assert(!isEqual(Val, getEmptyKey()) && "Cannot hash the empty key!");
66 static inline T* getEmptyKey() {
85 static inline char getEmptyKey() { return ~0; }
95 static inline unsigned getEmptyKey() { return ~0U; }
105 static inline unsigned long getEmptyKey() { return ~0UL; }
117 static inline unsigned long long getEmptyKey() { return ~0ULL; }
130 static inline int getEmptyKey() { return 0x7fffffff; }
140 static inline long getEmptyKey() {
[all …]
DDenseMap.h104 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear()
290 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in destroyAll()
305 const KeyT EmptyKey = getEmptyKey(); in initEmpty()
325 const KeyT EmptyKey = getEmptyKey(); in moveFromOldBuckets()
362 if (!KeyInfoT::isEqual(getBuckets()[i].getFirst(), getEmptyKey()) && in copyFrom()
376 static const KeyT getEmptyKey() { in getEmptyKey() function
377 return KeyInfoT::getEmptyKey(); in getEmptyKey()
501 const KeyT EmptyKey = getEmptyKey(); in InsertIntoBucketImpl()
525 const KeyT EmptyKey = getEmptyKey(); in LookupBucketFor()
793 const KeyT EmptyKey = this->getEmptyKey(); in swap()
[all …]
DPointerEmbeddedInt.h108 static inline T getEmptyKey() { return IntInfo::getEmptyKey(); }
DPointerSumType.h187 static inline SumType getEmptyKey() {
188 return SumType::create<SomeTag>(SomePointerInfo::getEmptyKey());
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DDenseMapInfo.h33 static inline T* getEmptyKey() {
52 static inline char getEmptyKey() { return ~0; }
62 static inline unsigned getEmptyKey() { return ~0; }
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 …]
DDenseMap.h67 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in ~DenseMap()
117 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear()
241 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in CopyFrom()
274 if (!KeyInfoT::isEqual(Buckets[i].first, getEmptyKey()) && in CopyFrom()
302 if (!KeyInfoT::isEqual(TheBucket->first, getEmptyKey())) in InsertIntoBucket()
313 static const KeyT getEmptyKey() { in getEmptyKey() function
314 return KeyInfoT::getEmptyKey(); in getEmptyKey()
336 const KeyT EmptyKey = getEmptyKey(); in LookupBucketFor()
385 const KeyT EmptyKey = getEmptyKey(); in init()
404 const KeyT EmptyKey = getEmptyKey(); in grow()
[all …]
/external/llvm/tools/llvm-dwp/
DDWPStringPool.h13 static inline const char *getEmptyKey() { in getEmptyKey() function
20 assert(Val != getEmptyKey() && "Cannot hash the empty key!"); in getHashValue()
25 if (RHS == getEmptyKey()) in isEqual()
26 return LHS == getEmptyKey(); in isEqual()
/external/clang/include/clang/AST/
DBaseSubobject.h55 static clang::BaseSubobject getEmptyKey() {
57 DenseMapInfo<const clang::CXXRecordDecl *>::getEmptyKey(),
58 clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getEmptyKey()));
DTypeOrdering.h41 static inline clang::QualType getEmptyKey() { return clang::QualType(); }
59 static inline clang::CanQualType getEmptyKey() {
DASTTypeTraits.h99 static inline ASTNodeKind getEmptyKey() { return ASTNodeKind(); } in getEmptyKey() function
329 static inline DynTypedNode getEmptyKey() {
331 Node.NodeKind = ASTNodeKind::DenseMapInfo::getEmptyKey();
358 auto Empty = ASTNodeKind::DenseMapInfo::getEmptyKey();
DCharUnits.h216 static clang::CharUnits getEmptyKey() {
218 DenseMapInfo<clang::CharUnits::QuantityType>::getEmptyKey();
/external/clang/lib/CodeGen/
DCodeGenTBAA.h127 static clang::CodeGen::TBAAPathTag getEmptyKey() {
129 DenseMapInfo<const clang::Type *>::getEmptyKey(),
130 DenseMapInfo<const MDNode *>::getEmptyKey(),
131 DenseMapInfo<uint64_t>::getEmptyKey());
/external/llvm/lib/Analysis/
DAliasAnalysisSummary.h172 static inline cflaa::InstantiatedValue getEmptyKey() {
173 return cflaa::InstantiatedValue{DenseMapInfo<Value *>::getEmptyKey(),
174 DenseMapInfo<unsigned>::getEmptyKey()};
/external/llvm/lib/Target/X86/
DX86OptimizeLEAs.cpp104 static inline MemOpKey getEmptyKey() { in getEmptyKey() function
105 return MemOpKey(PtrInfo::getEmptyKey(), PtrInfo::getEmptyKey(), in getEmptyKey()
106 PtrInfo::getEmptyKey(), PtrInfo::getEmptyKey(), in getEmptyKey()
107 PtrInfo::getEmptyKey()); in getEmptyKey()
119 assert(Val.Disp != PtrInfo::getEmptyKey() && "Cannot hash the empty key"); in getHashValue()
162 if (RHS.Disp == PtrInfo::getEmptyKey()) in isEqual()
163 return LHS.Disp == PtrInfo::getEmptyKey(); in isEqual()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DEarlyCSE.cpp54 return Inst == DenseMapInfo<Instruction*>::getEmptyKey() || in isSentinel()
78 static inline SimpleValue getEmptyKey() { in getEmptyKey() function
79 return DenseMapInfo<Instruction*>::getEmptyKey(); in getEmptyKey()
147 return Inst == DenseMapInfo<Instruction*>::getEmptyKey() || in isSentinel()
171 static inline CallValue getEmptyKey() { in getEmptyKey() function
172 return DenseMapInfo<Instruction*>::getEmptyKey(); in getEmptyKey()
/external/llvm/include/llvm/CodeGen/PBQP/
DCostAllocator.h49 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/swiftshader/third_party/LLVM/include/llvm/Support/
DDebugLoc.h32 static DebugLoc getEmptyKey() {
106 static DebugLoc getEmptyKey();
DValueHandle.h100 V != DenseMapInfo<Value *>::getEmptyKey() && in isValid()
245 static inline AssertingVH<T> getEmptyKey() {
246 return AssertingVH<T>(PointerInfo::getEmptyKey());
/external/llvm/include/llvm/IR/
DDominators.h61 static inline BasicBlockEdge getEmptyKey() {
62 return BasicBlockEdge(BBInfo::getEmptyKey(), BBInfo::getEmptyKey());
DValueHandle.h108 V != DenseMapInfo<Value *>::getEmptyKey() && in isValid()
245 static inline AssertingVH<T> getEmptyKey() {
247 Res.setRawValPtr(DenseMapInfo<Value *>::getEmptyKey());
/external/llvm/include/llvm/Analysis/
DMemoryLocation.h125 static inline MemoryLocation getEmptyKey() {
126 return MemoryLocation(DenseMapInfo<const Value *>::getEmptyKey(), 0);
/external/llvm/lib/IR/
DLLVMContextImpl.h51 static inline APInt getEmptyKey() { in getEmptyKey() function
70 static inline APFloat getEmptyKey() { return APFloat(APFloat::Bogus, 1); } in getEmptyKey() function
99 static inline StructType* getEmptyKey() { in getEmptyKey() function
100 return DenseMapInfo<StructType*>::getEmptyKey(); in getEmptyKey()
114 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual()
146 static inline FunctionType* getEmptyKey() { in getEmptyKey() function
147 return DenseMapInfo<FunctionType*>::getEmptyKey(); in getEmptyKey()
162 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual()
942 static inline NodeTy *getEmptyKey() {
943 return DenseMapInfo<NodeTy *>::getEmptyKey();
[all …]
/external/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp62 return Inst == DenseMapInfo<Instruction *>::getEmptyKey() || in isSentinel()
81 static inline SimpleValue getEmptyKey() { in getEmptyKey() function
82 return DenseMapInfo<Instruction *>::getEmptyKey(); in getEmptyKey()
191 return Inst == DenseMapInfo<Instruction *>::getEmptyKey() || in isSentinel()
210 static inline CallValue getEmptyKey() { in getEmptyKey() function
211 return DenseMapInfo<Instruction *>::getEmptyKey(); in getEmptyKey()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DMachineInstr.h582 static inline MachineInstr *getEmptyKey() {
594 if (RHS == getEmptyKey() || RHS == getTombstoneKey() ||
595 LHS == getEmptyKey() || LHS == getTombstoneKey())
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DAliasSetTracker.h48 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()

1234