Home
last modified time | relevance | path

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

12345

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DDenseMapInfo.h67 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 DCachedHashString.h50 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 DDenseMap.h122 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 DPointerEmbeddedInt.h107 static inline T getEmptyKey() { return IntInfo::getEmptyKey(); }
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/
H A 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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenTBAA.h220 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 DBaseSubobject.h58 static clang::BaseSubobject getEmptyKey() {
60 DenseMapInfo<const clang::CXXRecordDecl *>::getEmptyKey(),
61 clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getEmptyKey()));
H A DTypeOrdering.h40 static inline clang::QualType getEmptyKey() { return clang::QualType(); }
58 static inline clang::CanQualType getEmptyKey() {
H A DNestedNameSpecifier.h537 static clang::NestedNameSpecifierLoc getEmptyKey() {
538 return clang::NestedNameSpecifierLoc(FirstInfo::getEmptyKey(),
539 SecondInfo::getEmptyKey());
H A DASTTypeTraits.h108 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 DX86OptimizeLEAs.cpp121 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 DItaniumCXXABI.cpp80 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 DCostAllocator.h50 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 DMemoryLocation.h317 static inline LocationSize getEmptyKey() {
332 static inline MemoryLocation getEmptyKey() {
333 return MemoryLocation(DenseMapInfo<const Value *>::getEmptyKey(),
334 DenseMapInfo<LocationSize>::getEmptyKey());
H A DIRSimilarityIdentifier.h215 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 DFileEntry.h48 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 DWasmTraits.h25 static wasm::WasmSignature getEmptyKey() {
51 static wasm::WasmGlobalType getEmptyKey() {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DValueHandle.h103 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 DDominators.h114 static inline BasicBlockEdge getEmptyKey() {
115 return BasicBlockEdge(BBInfo::getEmptyKey(), BBInfo::getEmptyKey());
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DCFLAndersAliasAnalysis.cpp276 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 DAliasAnalysisSummary.h249 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 DMCRegister.h95 static inline unsigned getEmptyKey() {
96 return DenseMapInfo<unsigned>::getEmptyKey();
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRegister.h149 static inline unsigned getEmptyKey() {
150 return DenseMapInfo<unsigned>::getEmptyKey();
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DCallGraph.h218 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 DDWARFLinkerDeclContext.h163 using DenseMapInfo<DeclContext *>::getEmptyKey;
171 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual()

12345