/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
H A D | DenseMapInfo.h | 67 static inline T* getEmptyKey() { 89 static inline char getEmptyKey() { return ~0; } 100 static inline unsigned char getEmptyKey() { return ~0; } 111 static inline unsigned short getEmptyKey() { return 0xFFFF; } 122 static inline unsigned getEmptyKey() { return ~0U; } 133 static inline unsigned long getEmptyKey() { return ~0UL; } 147 static inline unsigned long long getEmptyKey() { return ~0ULL; } 162 static inline short getEmptyKey() { return 0x7FFF; } 170 static inline int getEmptyKey() { return 0x7fffffff; } 181 static inline long 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 | DenseMap.h | 122 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear() 364 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in destroyAll() 379 const KeyT EmptyKey = getEmptyKey(); in initEmpty() 399 const KeyT EmptyKey = getEmptyKey(); in moveFromOldBuckets() 437 if (!KeyInfoT::isEqual(getBuckets()[i].getFirst(), getEmptyKey()) && in copyFrom() 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() 938 const KeyT EmptyKey = this->getEmptyKey(); in swap() [all …]
|
H A D | PointerEmbeddedInt.h | 107 static inline T getEmptyKey() { return IntInfo::getEmptyKey(); }
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/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()
|
/netbsd-src/external/apache2/llvm/dist/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());
|
/netbsd-src/external/apache2/llvm/dist/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());
|
H A D | ASTTypeTraits.h | 108 static inline ASTNodeKind getEmptyKey() { return ASTNodeKind(); } in getEmptyKey() function 351 static inline DynTypedNode getEmptyKey() { 353 Node.NodeKind = ASTNodeKind::DenseMapInfo::getEmptyKey(); 380 auto Empty = ASTNodeKind::DenseMapInfo::getEmptyKey();
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/ |
H A D | FileEntry.h | 48 static inline gsym::FileEntry getEmptyKey() { 49 uint32_t key = DenseMapInfo<uint32_t>::getEmptyKey();
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/ |
H A D | WasmTraits.h | 25 static wasm::WasmSignature getEmptyKey() { 51 static wasm::WasmGlobalType getEmptyKey() {
|
/netbsd-src/external/apache2/llvm/dist/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());
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
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()
|
H A D | AliasAnalysisSummary.h | 249 static inline cflaa::InstantiatedValue getEmptyKey() { 250 return cflaa::InstantiatedValue{DenseMapInfo<Value *>::getEmptyKey(), 251 DenseMapInfo<unsigned>::getEmptyKey()};
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
H A D | MCRegister.h | 95 static inline unsigned getEmptyKey() { 96 return DenseMapInfo<unsigned>::getEmptyKey();
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | Register.h | 149 static inline unsigned getEmptyKey() { 150 return DenseMapInfo<unsigned>::getEmptyKey();
|
/netbsd-src/external/apache2/llvm/dist/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());
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/ |
H A D | DWARFLinkerDeclContext.h | 163 using DenseMapInfo<DeclContext *>::getEmptyKey; 171 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual()
|