| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | DenseMapInfo.h | 63 static inline T* getEmptyKey() { 85 static inline char getEmptyKey() { return ~0; } 118 static inline unsigned getEmptyKey() { return ~0U; } 158 static inline short getEmptyKey() { return 0x7FFF; } 166 static inline int getEmptyKey() { return 0x7fffffff; } 177 static inline long getEmptyKey() { 214 static inline Pair getEmptyKey() { 215 return std::make_pair(FirstInfo::getEmptyKey(), 216 SecondInfo::getEmptyKey()); 239 static inline Tuple getEmptyKey() { [all …]
|
| H A D | CachedHashString.h | 50 static CachedHashStringRef getEmptyKey() { 51 return CachedHashStringRef(DenseMapInfo<StringRef>::getEmptyKey(), 0); 57 assert(!isEqual(S, getEmptyKey()) && "Cannot hash the empty key!"); 78 static char *getEmptyKeyPtr() { return DenseMapInfo<char *>::getEmptyKey(); } 153 static CachedHashString getEmptyKey() { 162 assert(!isEqual(S, getEmptyKey()) && "Cannot hash the empty key!");
|
| H A D | PointerEmbeddedInt.h | 107 static inline T getEmptyKey() { return IntInfo::getEmptyKey(); }
|
| H A D | DenseMap.h | 122 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear() 379 const KeyT EmptyKey = getEmptyKey(); in initEmpty() 399 const KeyT EmptyKey = getEmptyKey(); in moveFromOldBuckets() 453 static const KeyT getEmptyKey() { in getEmptyKey() function 456 return KeyInfoT::getEmptyKey(); in getEmptyKey() 596 const KeyT EmptyKey = getEmptyKey(); in InsertIntoBucketImpl() 620 const KeyT EmptyKey = getEmptyKey(); in LookupBucketFor() 941 const KeyT EmptyKey = this->getEmptyKey(); in swap() 1053 const KeyT EmptyKey = this->getEmptyKey(); in grow() 1282 const KeyT Empty = KeyInfoT::getEmptyKey(); in AdvancePastEmptyBuckets() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DWP/ |
| H A D | DWPStringPool.h | 13 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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | WasmTraits.h | 25 static wasm::WasmSignature getEmptyKey() { 51 static wasm::WasmGlobalType getEmptyKey() { 68 static wasm::WasmLimits getEmptyKey() { 90 static wasm::WasmTableType getEmptyKey() { 92 DenseMapInfo<wasm::WasmLimits>::getEmptyKey()};
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenTBAA.h | 220 static clang::CodeGen::TBAAAccessInfo getEmptyKey() { 221 unsigned UnsignedKey = DenseMapInfo<unsigned>::getEmptyKey(); 224 DenseMapInfo<MDNode *>::getEmptyKey(), 225 DenseMapInfo<MDNode *>::getEmptyKey(), 226 DenseMapInfo<uint64_t>::getEmptyKey(), 227 DenseMapInfo<uint64_t>::getEmptyKey());
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | BaseSubobject.h | 58 static clang::BaseSubobject getEmptyKey() { 60 DenseMapInfo<const clang::CXXRecordDecl *>::getEmptyKey(), 61 clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getEmptyKey()));
|
| H A D | TypeOrdering.h | 40 static inline clang::QualType getEmptyKey() { return clang::QualType(); } 58 static inline clang::CanQualType getEmptyKey() {
|
| H A D | NestedNameSpecifier.h | 537 static clang::NestedNameSpecifierLoc getEmptyKey() { 538 return clang::NestedNameSpecifierLoc(FirstInfo::getEmptyKey(), 539 SecondInfo::getEmptyKey());
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86OptimizeLEAs.cpp | 121 static inline MemOpKey getEmptyKey() { in getEmptyKey() function 122 return MemOpKey(PtrInfo::getEmptyKey(), PtrInfo::getEmptyKey(), in getEmptyKey() 123 PtrInfo::getEmptyKey(), PtrInfo::getEmptyKey(), in getEmptyKey() 124 PtrInfo::getEmptyKey()); in getEmptyKey() 136 assert(Val.Disp != PtrInfo::getEmptyKey() && "Cannot hash the empty key"); in getHashValue() 179 if (RHS.Disp == PtrInfo::getEmptyKey()) in isEqual() 180 return LHS.Disp == PtrInfo::getEmptyKey(); in isEqual()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/ |
| H A D | CostAllocator.h | 50 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()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | ItaniumCXXABI.cpp | 80 V, llvm::DenseMapInfo<T>::getEmptyKey()); in isDenseMapKeyEmpty() 105 static DecompositionDeclName getEmptyKey() { in getEmptyKey() function 106 return {ArrayInfo::getEmptyKey()}; in getEmptyKey() 112 assert(!isEqual(Key, getEmptyKey()) && !isEqual(Key, getTombstoneKey())); in getHashValue()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/ |
| H A D | FileEntry.h | 48 static inline gsym::FileEntry getEmptyKey() { 49 uint32_t key = DenseMapInfo<uint32_t>::getEmptyKey();
|
| /freebsd-13.1/contrib/llvm-project/lld/include/lld/Core/ |
| H A D | SymbolTable.h | 64 static StringRef getEmptyKey() { return StringRef(); } in getEmptyKey() function 77 static const DefinedAtom * getEmptyKey() { return nullptr; } in getEmptyKey() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemoryLocation.h | 317 static inline LocationSize getEmptyKey() { 332 static inline MemoryLocation getEmptyKey() { 333 return MemoryLocation(DenseMapInfo<const Value *>::getEmptyKey(), 334 DenseMapInfo<LocationSize>::getEmptyKey());
|
| H A D | IRSimilarityIdentifier.h | 215 static inline IRInstructionData *getEmptyKey() { return nullptr; } in getEmptyKey() function 228 if (RHS == getEmptyKey() || RHS == getTombstoneKey() || in isEqual() 229 LHS == getEmptyKey() || LHS == getTombstoneKey()) in isEqual() 372 assert(DenseMapInfo<unsigned>::getEmptyKey() == static_cast<unsigned>(-1) && in IRInstructionMapper()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCRegister.h | 96 static inline unsigned getEmptyKey() { 97 return DenseMapInfo<unsigned>::getEmptyKey();
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ValueHandle.h | 103 V != DenseMapInfo<Value *>::getEmptyKey() && in isValid() 180 static inline WeakVH getEmptyKey() { 181 return WeakVH(DenseMapInfo<Value *>::getEmptyKey()); 527 static inline PoisoningVH<T> getEmptyKey() { 529 Res.setRawValPtr(DenseMapInfo<Value *>::getEmptyKey());
|
| H A D | Dominators.h | 114 static inline BasicBlockEdge getEmptyKey() { 115 return BasicBlockEdge(BBInfo::getEmptyKey(), BBInfo::getEmptyKey());
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | AliasAnalysisSummary.h | 249 static inline cflaa::InstantiatedValue getEmptyKey() { 250 return cflaa::InstantiatedValue{DenseMapInfo<Value *>::getEmptyKey(), 251 DenseMapInfo<unsigned>::getEmptyKey()};
|
| H A D | CFLAndersAliasAnalysis.cpp | 276 static OffsetValue getEmptyKey() { in getEmptyKey() function 277 return OffsetValue{DenseMapInfo<const Value *>::getEmptyKey(), in getEmptyKey() 278 DenseMapInfo<int64_t>::getEmptyKey()}; in getEmptyKey() 283 DenseMapInfo<int64_t>::getEmptyKey()}; in getTombstoneKey() 298 static OffsetInstantiatedValue getEmptyKey() { in getEmptyKey() function 300 DenseMapInfo<InstantiatedValue>::getEmptyKey(), in getEmptyKey() 301 DenseMapInfo<int64_t>::getEmptyKey()}; in getEmptyKey() 307 DenseMapInfo<int64_t>::getEmptyKey()}; in getTombstoneKey()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | Register.h | 149 static inline unsigned getEmptyKey() { 150 return DenseMapInfo<unsigned>::getEmptyKey();
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/ |
| H A D | CallGraph.h | 218 static inline clang::CallGraphNode::CallRecord getEmptyKey() { 220 DenseMapInfo<clang::CallGraphNode *>::getEmptyKey(), 221 DenseMapInfo<clang::Expr *>::getEmptyKey());
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | ConstString.h | 437 static inline lldb_private::ConstString getEmptyKey() { 439 DenseMapInfo<const char *>::getEmptyKey());
|