Searched refs:KeyInfoT (Results 1 – 4 of 4) sorted by relevance
| /openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_dense_map.h | 26 template <typename DerivedT, typename KeyT, typename ValueT, typename KeyInfoT, 58 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear() 59 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { 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() 296 !KeyInfoT::isEqual(B->getFirst(), TombstoneKey)) { in moveFromOldBuckets() 316 const DenseMapBase<OtherBaseT, KeyT, ValueT, KeyInfoT, BucketT> &other) { in copyFrom() argument [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/ADT/ |
| D | DenseMap.h | 54 typename KeyInfoT = DenseMapInfo<KeyT>, 59 template <typename DerivedT, typename KeyT, typename ValueT, typename KeyInfoT, 71 using iterator = DenseMapIterator<KeyT, ValueT, KeyInfoT, BucketT>; 73 DenseMapIterator<KeyT, ValueT, KeyInfoT, BucketT, true>; 129 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear() 130 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { in clear() 366 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) && in destroyAll() 367 !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) in destroyAll() 402 if (!KeyInfoT::isEqual(B->getFirst(), EmptyKey) && in moveFromOldBuckets() 403 !KeyInfoT::isEqual(B->getFirst(), TombstoneKey)) { in moveFromOldBuckets() [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/TextAPI/ |
| D | InterfaceFile.h | 439 template <typename DerivedT, typename KeyInfoT, typename BucketT> 441 KeyInfoT, BucketT> &LHS, 443 KeyInfoT, BucketT> &RHS) {
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/ |
| 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>;
|