Searched refs:TSDRegistryT (Results 1 – 5 of 5) sorted by relevance
/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/ |
H A D | tsd_exclusive.h | 132 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 D | allocator_config.h | 98 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 D | combined.h | 52 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 D | tsd_test.cpp | 27 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 D | combined_test.cpp | 532 template <class A> using TSDRegistryT = scudo::TSDRegistrySharedT<A, 1U, 1U>; typedef
|