Searched refs:KeyInfoT (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_dense_map.h | 58 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear() 237 if (!KeyInfoT::isEqual(K, EmptyKey) && in forEach() 238 !KeyInfoT::isEqual(K, TombstoneKey)) { in forEach() 260 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) && in destroyAll() 261 !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) in destroyAll() 295 if (!KeyInfoT::isEqual(B->getFirst(), EmptyKey) && in moveFromOldBuckets() 339 return KeyInfoT::getHashValue(Val); in getHashValue() 344 return KeyInfoT::getHashValue(Val); in getHashValue() 471 CHECK(!KeyInfoT::isEqual(Val, EmptyKey)); in LookupBucketFor() 472 CHECK(!KeyInfoT::isEqual(Val, TombstoneKey)); in LookupBucketFor() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | DenseMap.h | 54 typename KeyInfoT = DenseMapInfo<KeyT>, 447 return KeyInfoT::getHashValue(Val); in getHashValue() 452 return KeyInfoT::getHashValue(Val); in getHashValue() 458 return KeyInfoT::getEmptyKey(); in getEmptyKey() 462 return KeyInfoT::getTombstoneKey(); in getTombstoneKey() 624 assert(!KeyInfoT::isEqual(Val, EmptyKey) && in LookupBucketFor() 714 typename KeyInfoT = DenseMapInfo<KeyT>, 880 typename KeyInfoT = DenseMapInfo<KeyT>, 885 ValueT, KeyInfoT, BucketT> { 1286 const KeyT Empty = KeyInfoT::getEmptyKey(); in AdvancePastEmptyBuckets() [all …]
|
| /llvm-project-15.0.7/mlir/include/mlir/Support/ |
| H A D | LLVM.h | 52 template <typename KeyT, typename ValueT, typename KeyInfoT, typename BucketT> 120 typename KeyInfoT = DenseMapInfo<KeyT>, 122 using DenseMap = llvm::DenseMap<KeyT, ValueT, KeyInfoT, BucketT>;
|
| /llvm-project-15.0.7/llvm/include/llvm/TextAPI/ |
| H A D | InterfaceFile.h | 439 template <typename DerivedT, typename KeyInfoT, typename BucketT> 441 KeyInfoT, BucketT> &LHS, 443 KeyInfoT, BucketT> &RHS) {
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_dense_map_test.cpp | 23 typename KeyInfoT = DenseMapInfo<KeyT>> 24 class TestDenseMap : public DenseMap<KeyT, ValueT, KeyInfoT> { 25 using BaseT = DenseMap<KeyT, ValueT, KeyInfoT>;
|