/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | DenseMapInfo.h | 45 static inline T* getTombstoneKey() { 62 static inline char getTombstoneKey() { return ~0 - 1; } 73 static inline unsigned char getTombstoneKey() { return ~0 - 1; } 84 static inline unsigned short getTombstoneKey() { return 0xFFFF - 1; } 95 static inline unsigned getTombstoneKey() { return ~0U - 1; } 106 static inline unsigned long getTombstoneKey() { return ~0UL - 1L; } 120 static inline unsigned long long getTombstoneKey() { return ~0ULL - 1ULL; } 135 static inline short getTombstoneKey() { return -0x7FFF - 1; } 143 static inline int getTombstoneKey() { return -0x7fffffff - 1; } 157 static inline long getTombstoneKey() { return getEmptyKey() - 1L; } [all …]
|
D | CachedHashString.h | 54 static CachedHashStringRef getTombstoneKey() { 55 return CachedHashStringRef(DenseMapInfo<StringRef>::getTombstoneKey(), 1); 59 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!"); 81 return DenseMapInfo<char *>::getTombstoneKey(); 158 static CachedHashString getTombstoneKey() { 164 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!");
|
D | DenseMap.h | 121 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear() 278 TheBucket->getFirst() = getTombstoneKey(); in erase() 286 TheBucket->getFirst() = getTombstoneKey(); in erase() 334 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in destroyAll() 370 const KeyT TombstoneKey = getTombstoneKey(); in moveFromOldBuckets() 408 !KeyInfoT::isEqual(getBuckets()[i].getFirst(), getTombstoneKey())) in copyFrom() 429 static const KeyT getTombstoneKey() { in getTombstoneKey() function 430 return KeyInfoT::getTombstoneKey(); in getTombstoneKey() 591 const KeyT TombstoneKey = getTombstoneKey(); in LookupBucketFor() 909 const KeyT TombstoneKey = this->getTombstoneKey(); in swap() [all …]
|
D | PointerEmbeddedInt.h | 108 static inline T getTombstoneKey() { return IntInfo::getTombstoneKey(); }
|
D | PointerSumType.h | 278 static inline SumType getTombstoneKey() { 279 return SumType::create<SomeTag>(SomePointerInfo::getTombstoneKey());
|
D | PointerUnion.h | 283 static inline Union getTombstoneKey() { 284 return Union(FirstInfo::getTombstoneKey());
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | DenseMapInfo.h | 41 static inline T* getTombstoneKey() { 56 static inline char getTombstoneKey() { return ~0 - 1; } 66 static inline unsigned getTombstoneKey() { return ~0U - 1; } 76 static inline unsigned long getTombstoneKey() { return ~0UL - 1L; } 88 static inline unsigned long long getTombstoneKey() { return ~0ULL - 1ULL; } 101 static inline int getTombstoneKey() { return -0x7fffffff - 1; } 113 static inline long getTombstoneKey() { return getEmptyKey() - 1L; } 125 static inline long long getTombstoneKey() { return -0x7fffffffffffffffLL-1; } 146 static inline Pair getTombstoneKey() { 147 return std::make_pair(FirstInfo::getTombstoneKey(), [all …]
|
D | DenseMap.h | 105 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear() 249 TheBucket->getFirst() = getTombstoneKey(); in erase() 257 TheBucket->getFirst() = getTombstoneKey(); in erase() 305 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in destroyAll() 341 const KeyT TombstoneKey = getTombstoneKey(); in moveFromOldBuckets() 378 !KeyInfoT::isEqual(getBuckets()[i].getFirst(), getTombstoneKey())) in copyFrom() 394 static const KeyT getTombstoneKey() { in getTombstoneKey() function 395 return KeyInfoT::getTombstoneKey(); in getTombstoneKey() 524 const KeyT TombstoneKey = getTombstoneKey(); in LookupBucketFor() 794 const KeyT TombstoneKey = this->getTombstoneKey(); in swap() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | ValueHandle.h | 100 V != DenseMapInfo<Value *>::getTombstoneKey(); in isValid() 180 static inline WeakVH getTombstoneKey() { 181 return WeakVH(DenseMapInfo<Value *>::getTombstoneKey()); 315 static inline AssertingVH<T> getTombstoneKey() { 317 Res.setRawValPtr(DenseMapInfo<Value *>::getTombstoneKey()); 546 static inline PoisoningVH<T> getTombstoneKey() { 548 Res.setRawValPtr(DenseMapInfo<Value *>::getTombstoneKey());
|
D | Dominators.h | 111 static inline BasicBlockEdge getTombstoneKey() { 112 return BasicBlockEdge(BBInfo::getTombstoneKey(), BBInfo::getTombstoneKey());
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86OptimizeLEAs.cpp | 127 static inline MemOpKey getTombstoneKey() { in getTombstoneKey() function 128 return MemOpKey(PtrInfo::getTombstoneKey(), PtrInfo::getTombstoneKey(), in getTombstoneKey() 129 PtrInfo::getTombstoneKey(), PtrInfo::getTombstoneKey(), in getTombstoneKey() 130 PtrInfo::getTombstoneKey()); in getTombstoneKey() 137 assert(Val.Disp != PtrInfo::getTombstoneKey() && in getHashValue() 181 if (RHS.Disp == PtrInfo::getTombstoneKey()) in isEqual() 182 return LHS.Disp == PtrInfo::getTombstoneKey(); in isEqual()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | MemoryLocation.h | 276 static inline LocationSize getTombstoneKey() { 292 static inline MemoryLocation getTombstoneKey() { 293 return MemoryLocation(DenseMapInfo<const Value *>::getTombstoneKey(), 294 DenseMapInfo<LocationSize>::getTombstoneKey());
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/ |
D | CostAllocator.h | 52 static inline PoolEntry *getTombstoneKey() { in getTombstoneKey() function 76 if (P == getEmptyKey() || P == getTombstoneKey()) in isEqual() 82 if (P1 == getEmptyKey() || P1 == getTombstoneKey()) in isEqual()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/ |
D | FileEntry.h | 53 static inline gsym::FileEntry getTombstoneKey() { 54 uint32_t key = DenseMapInfo<uint32_t>::getTombstoneKey();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | WasmTraits.h | 30 static wasm::WasmSignature getTombstoneKey() { 54 static wasm::WasmGlobalType getTombstoneKey() {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCRegister.h | 97 static inline unsigned getTombstoneKey() { 98 return DenseMapInfo<unsigned>::getTombstoneKey();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | AliasAnalysisSummary.h | 250 static inline cflaa::InstantiatedValue getTombstoneKey() { 251 return cflaa::InstantiatedValue{DenseMapInfo<Value *>::getTombstoneKey(), 252 DenseMapInfo<unsigned>::getTombstoneKey()};
|
D | CFLAndersAliasAnalysis.cpp | 281 static OffsetValue getTombstoneKey() { in getTombstoneKey() function 282 return OffsetValue{DenseMapInfo<const Value *>::getTombstoneKey(), in getTombstoneKey() 304 static OffsetInstantiatedValue getTombstoneKey() { in getTombstoneKey() function 306 DenseMapInfo<InstantiatedValue>::getTombstoneKey(), in getTombstoneKey()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | Register.h | 143 static inline unsigned getTombstoneKey() { 144 return DenseMapInfo<unsigned>::getTombstoneKey();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/ |
D | DWARFLinkerDeclContext.h | 150 using DenseMapInfo<DeclContext *>::getTombstoneKey; 157 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | LLVMContextImpl.h | 69 static inline APInt getTombstoneKey() { in getTombstoneKey() function 86 static inline APFloat getTombstoneKey() { return APFloat(APFloat::Bogus(), 2); } in getTombstoneKey() function 124 static inline StructType* getTombstoneKey() { in getTombstoneKey() function 125 return DenseMapInfo<StructType*>::getTombstoneKey(); in getTombstoneKey() 139 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual() 179 static inline FunctionType* getTombstoneKey() { in getTombstoneKey() function 180 return DenseMapInfo<FunctionType*>::getTombstoneKey(); in getTombstoneKey() 195 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual() 1146 static inline NodeTy *getTombstoneKey() { 1147 return DenseMapInfo<NodeTy *>::getTombstoneKey(); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeHashing.h | 181 static codeview::LocallyHashedType getTombstoneKey() { return Tombstone; } 201 static codeview::GloballyHashedType getTombstoneKey() { return Tombstone; }
|
D | TypeIndex.h | 285 static inline codeview::TypeIndex getTombstoneKey() { 286 return codeview::TypeIndex{DenseMapInfo<uint32_t>::getTombstoneKey()};
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 105 Inst == DenseMapInfo<Instruction *>::getTombstoneKey(); in isSentinel() 130 static inline SimpleValue getTombstoneKey() { in getTombstoneKey() function 131 return DenseMapInfo<Instruction *>::getTombstoneKey(); in getTombstoneKey() 418 Inst == DenseMapInfo<Instruction *>::getTombstoneKey(); in isSentinel() 442 static inline CallValue getTombstoneKey() { in getTombstoneKey() function 443 return DenseMapInfo<Instruction *>::getTombstoneKey(); in getTombstoneKey()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | BypassSlowDivision.h | 51 static DivRemMapKey getTombstoneKey() {
|