Home
last modified time | relevance | path

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

123456

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DDenseMapInfo.h39 static inline T* getEmptyKey() {
61 static inline char getEmptyKey() { return ~0; }
72 static inline unsigned short getEmptyKey() { return 0xFFFF; }
83 static inline unsigned getEmptyKey() { return ~0U; }
94 static inline unsigned long getEmptyKey() { return ~0UL; }
108 static inline unsigned long long getEmptyKey() { return ~0ULL; }
123 static inline short getEmptyKey() { return 0x7FFF; }
131 static inline int getEmptyKey() { return 0x7fffffff; }
142 static inline long getEmptyKey() {
146 static inline long getTombstoneKey() { return getEmptyKey() - 1L; }
[all …]
DCachedHashString.h52 static CachedHashStringRef getEmptyKey() {
53 return CachedHashStringRef(DenseMapInfo<StringRef>::getEmptyKey(), 0);
59 assert(!isEqual(S, getEmptyKey()) && "Cannot hash the empty key!");
80 static char *getEmptyKeyPtr() { return DenseMapInfo<char *>::getEmptyKey(); }
155 static CachedHashString getEmptyKey() {
164 assert(!isEqual(S, getEmptyKey()) && "Cannot hash the empty key!");
DDenseMap.h118 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear()
330 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in destroyAll()
345 const KeyT EmptyKey = getEmptyKey(); in initEmpty()
365 const KeyT EmptyKey = getEmptyKey(); in moveFromOldBuckets()
402 if (!KeyInfoT::isEqual(getBuckets()[i].getFirst(), getEmptyKey()) && in copyFrom()
418 static const KeyT getEmptyKey() { in getEmptyKey() function
421 return KeyInfoT::getEmptyKey(); in getEmptyKey()
561 const KeyT EmptyKey = getEmptyKey(); in InsertIntoBucketImpl()
585 const KeyT EmptyKey = getEmptyKey(); in LookupBucketFor()
860 const KeyT EmptyKey = this->getEmptyKey(); in swap()
[all …]
DPointerEmbeddedInt.h108 static inline T getEmptyKey() { return IntInfo::getEmptyKey(); }
/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(); }
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DDenseMapInfo.h36 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 …]
DDenseMap.h105 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear()
305 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in destroyAll()
320 const KeyT EmptyKey = getEmptyKey(); in initEmpty()
340 const KeyT EmptyKey = getEmptyKey(); in moveFromOldBuckets()
377 if (!KeyInfoT::isEqual(getBuckets()[i].getFirst(), getEmptyKey()) && in copyFrom()
391 static const KeyT getEmptyKey() { in getEmptyKey() function
392 return KeyInfoT::getEmptyKey(); in getEmptyKey()
499 const KeyT EmptyKey = getEmptyKey(); in InsertIntoBucketImpl()
523 const KeyT EmptyKey = getEmptyKey(); in LookupBucketFor()
793 const KeyT EmptyKey = this->getEmptyKey(); in swap()
[all …]
/external/swiftshader/third_party/llvm-7.0/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/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() {
/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-7.0/llvm/lib/Target/X86/
DX86OptimizeLEAs.cpp119 static inline MemOpKey getEmptyKey() { in getEmptyKey() function
120 return MemOpKey(PtrInfo::getEmptyKey(), PtrInfo::getEmptyKey(), in getEmptyKey()
121 PtrInfo::getEmptyKey(), PtrInfo::getEmptyKey(), in getEmptyKey()
122 PtrInfo::getEmptyKey()); in getEmptyKey()
134 assert(Val.Disp != PtrInfo::getEmptyKey() && "Cannot hash the empty key"); in getHashValue()
177 if (RHS.Disp == PtrInfo::getEmptyKey()) in isEqual()
178 return LHS.Disp == PtrInfo::getEmptyKey(); in isEqual()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/PBQP/
DCostAllocator.h51 static inline PoolEntry *getEmptyKey() { return nullptr; } in getEmptyKey() function
77 if (P == getEmptyKey() || P == getTombstoneKey()) in isEqual()
83 if (P1 == getEmptyKey() || P1 == getTombstoneKey()) in isEqual()
/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-7.0/llvm/include/llvm/Object/
DWasmTraits.h26 static wasm::WasmSignature getEmptyKey() {
46 static wasm::WasmGlobalType getEmptyKey() {
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DValueHandle.h100 V != DenseMapInfo<Value *>::getEmptyKey() && in isValid()
290 static inline AssertingVH<T> getEmptyKey() {
292 Res.setRawValPtr(DenseMapInfo<Value *>::getEmptyKey());
530 static inline PoisoningVH<T> getEmptyKey() {
532 Res.setRawValPtr(DenseMapInfo<Value *>::getEmptyKey());
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DAliasAnalysisSummary.h246 static inline cflaa::InstantiatedValue getEmptyKey() {
247 return cflaa::InstantiatedValue{DenseMapInfo<Value *>::getEmptyKey(),
248 DenseMapInfo<unsigned>::getEmptyKey()};
DCFLAndersAliasAnalysis.cpp274 static OffsetValue getEmptyKey() { in getEmptyKey() function
275 return OffsetValue{DenseMapInfo<const Value *>::getEmptyKey(), in getEmptyKey()
276 DenseMapInfo<int64_t>::getEmptyKey()}; in getEmptyKey()
281 DenseMapInfo<int64_t>::getEmptyKey()}; in getTombstoneKey()
296 static OffsetInstantiatedValue getEmptyKey() { in getEmptyKey() function
298 DenseMapInfo<InstantiatedValue>::getEmptyKey(), in getEmptyKey()
299 DenseMapInfo<int64_t>::getEmptyKey()}; in getEmptyKey()
305 DenseMapInfo<int64_t>::getEmptyKey()}; in getTombstoneKey()
/external/llvm/include/llvm/IR/
DDominators.h61 static inline BasicBlockEdge getEmptyKey() {
62 return BasicBlockEdge(BBInfo::getEmptyKey(), BBInfo::getEmptyKey());
/external/llvm/include/llvm/Analysis/
DMemoryLocation.h125 static inline MemoryLocation getEmptyKey() {
126 return MemoryLocation(DenseMapInfo<const Value *>::getEmptyKey(), 0);

123456