Home
last modified time | relevance | path

Searched refs:ThisT (Results 1 – 14 of 14) sorted by relevance

/openbsd/src/gnu/llvm/llvm/include/llvm/ADT/
DCoalescingBitVector.h42 using ThisT = CoalescingBitVector<IndexT>; variable
62 CoalescingBitVector(const ThisT &Other) in CoalescingBitVector()
67 ThisT &operator=(const ThisT &Other) {
73 CoalescingBitVector(ThisT &&Other) = delete;
74 ThisT &operator=(ThisT &&Other) = delete;
107 void set(const ThisT &Other) { in set()
159 void operator|=(const ThisT &RHS) {
177 void operator&=(const ThisT &RHS) {
188 void intersectWithComplement(const ThisT &Other) { in intersectWithComplement()
219 bool operator==(const ThisT &RHS) const {
[all …]
DGenericUniformityInfo.h44 using ThisT = GenericUniformityInfo<ContextT>; variable
DFunctionExtras.h64 template <typename CallableT, typename ThisT>
66 std::enable_if_t<!std::is_same<remove_cvref_t<CallableT>, ThisT>::value>;
/openbsd/src/gnu/llvm/llvm/include/llvm/Support/
DExtensibleRTTI.h113 template <typename ThisT, typename ParentT>
119 static const void *classID() { return &ThisT::ID; } in classID()
121 const void *dynamicClassID() const override { return &ThisT::ID; } in dynamicClassID()
127 static bool classof(const RTTIRoot *R) { return R->isA<ThisT>(); } in classof()
/openbsd/src/gnu/llvm/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h833 using ThisT = CovMapFunctionRecordV1<IntPtrT>; member
842 return accessors::getFuncHash<ThisT, Endian>(this); in getFuncHash()
846 return accessors::getDataSize<ThisT, Endian>(this); in getDataSize()
866 std::pair<const char *, const ThisT *>
868 return accessors::advanceByOneOutOfLine<ThisT, Endian>(this, MappingBuf); in advanceByOne()
877 return accessors::getCoverageMappingOutOfLine<ThisT, Endian>(this, in getCoverageMapping()
883 using ThisT = CovMapFunctionRecordV2; member
892 return accessors::getFuncHash<ThisT, Endian>(this); in getFuncHash()
896 return accessors::getDataSize<ThisT, Endian>(this); in getDataSize()
900 return accessors::getFuncNameRef<ThisT, Endian>(this); in getFuncNameRef()
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/scudo/standalone/
Dtsd.h29 using ThisT = TSD<Allocator>; in alignas() local
34 DCHECK(isAligned(reinterpret_cast<uptr>(this), alignof(ThisT))); in alignas()
Dquarantine.h173 using ThisT = GlobalQuarantine<Callback, Node>; variable
176 DCHECK(isAligned(reinterpret_cast<uptr>(this), alignof(ThisT))); in init()
Dprimary64.h50 typedef SizeClassAllocator64<Config> ThisT; typedef
51 typedef SizeClassAllocatorLocalCache<ThisT> CacheT;
64 DCHECK(isAligned(reinterpret_cast<uptr>(this), alignof(ThisT))); in init()
Dprimary32.h52 typedef SizeClassAllocator32<Config> ThisT; typedef
53 typedef SizeClassAllocatorLocalCache<ThisT> CacheT;
72 DCHECK(isAligned(reinterpret_cast<uptr>(this), alignof(ThisT))); in init()
Dcombined.h51 typedef Allocator<Params, PostInitCallback> ThisT; typedef
52 typedef typename Params::template TSDRegistryT<ThisT> TSDRegistryT;
59 explicit QuarantineCallback(ThisT &Instance, CacheT &LocalCache) in QuarantineCallback()
129 ThisT &Allocator;
251 void commitBack(TSD<ThisT> *TSD) { in commitBack()
/openbsd/src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
Dtsd_test.cpp26 using ThisT = MockAllocator<Config>; typedef in MockAllocator
27 using TSDRegistryT = typename Config::template TSDRegistryT<ThisT>;
49 EXPECT_EQ(0, posix_memalign(&P, alignof(ThisT), Size)); in operator new()
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator_primary64.h96 typedef SizeClassAllocator64<Params> ThisT; typedef
97 typedef SizeClassAllocator64LocalCache<ThisT> AllocatorCache;
98 typedef MemoryMapper<ThisT> MemoryMapperT;
621 friend class MemoryMapper<ThisT>;
Dsanitizer_allocator_primary32.h119 typedef SizeClassAllocator32<Params> ThisT; typedef
120 typedef SizeClassAllocator32LocalCache<ThisT> AllocatorCache;
/openbsd/src/gnu/llvm/clang/lib/Sema/
DTreeTransform.h14889 QualType ThisT = RebuildUnresolvedUsingType(Loc, E); in RebuildUnresolvedUsingType() local
14890 if (ThisT.isNull()) in RebuildUnresolvedUsingType()
14892 else if (ThisT->getAs<UnresolvedUsingType>()) in RebuildUnresolvedUsingType()
14893 FallbackT = ThisT; in RebuildUnresolvedUsingType()
14895 T = ThisT; in RebuildUnresolvedUsingType()
14897 assert(getSema().Context.hasSameType(ThisT, T) && in RebuildUnresolvedUsingType()