Home
last modified time | relevance | path

Searched refs:TSDRegistryT (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dtsd_exclusive.h132 typedef TSDRegistryExT<Allocator> TSDRegistryT; in teardownThread() typedef
139 if (TSDRegistryT::ThreadTSD.DestructorIterations > 1) { in teardownThread()
140 TSDRegistryT::ThreadTSD.DestructorIterations--; in teardownThread()
146 TSDRegistryT::ThreadTSD.commitBack(Instance); in teardownThread()
147 TSDRegistryT::State.InitState = ThreadState::TornDown; in teardownThread()
H A Dallocator_config.h98 template <class A> using TSDRegistryT = TSDRegistryExT<A>; // Exclusive member
130 using TSDRegistryT = TSDRegistrySharedT<A, 8U, 2U>; // Shared, max 8 TSDs. member
163 using TSDRegistryT = TSDRegistrySharedT<A, 2U, 1U>; // Shared, max 2 TSDs. member
183 using TSDRegistryT = TSDRegistrySharedT<A, 8U, 4U>; // Shared, max 8 TSDs. member
204 using TSDRegistryT = TSDRegistrySharedT<A, 1U, 1U>; // Shared, max 1 TSD. member
H A Dcombined.h52 typedef typename Params::template TSDRegistryT<ThisT> TSDRegistryT; typedef
241 TSDRegistryT *getTSDRegistry() { return &TSDRegistry; } in getTSDRegistry()
1045 TSDRegistryT TSDRegistry;
/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dtsd_test.cpp27 using TSDRegistryT = typename Config::template TSDRegistryT<ThisT>; typedef in MockAllocator
42 TSDRegistryT *getTSDRegistry() { return &TSDRegistry; } in getTSDRegistry()
56 TSDRegistryT TSDRegistry;
61 using TSDRegistryT = scudo::TSDRegistrySharedT<Allocator, 1U, 1U>; typedef
66 using TSDRegistryT = scudo::TSDRegistrySharedT<Allocator, 16U, 8U>; typedef
71 using TSDRegistryT = scudo::TSDRegistryExT<Allocator>; typedef
H A Dcombined_test.cpp532 template <class A> using TSDRegistryT = scudo::TSDRegistrySharedT<A, 1U, 1U>; typedef