Lines Matching refs:AllocatorT
65 using AllocatorT = MockAllocator<OneCache>; in TEST() typedef
66 auto Deleter = [](AllocatorT *A) { in TEST()
70 std::unique_ptr<AllocatorT, decltype(Deleter)> Allocator(new AllocatorT, in TEST()
80 template <class AllocatorT> static void testRegistry() { in testRegistry()
81 auto Deleter = [](AllocatorT *A) { in testRegistry()
85 std::unique_ptr<AllocatorT, decltype(Deleter)> Allocator(new AllocatorT, in testRegistry()
122 template <typename AllocatorT> static void stressCache(AllocatorT *Allocator) { in stressCache()
148 template <class AllocatorT> static void testRegistryThreaded() { in testRegistryThreaded()
150 auto Deleter = [](AllocatorT *A) { in testRegistryThreaded()
154 std::unique_ptr<AllocatorT, decltype(Deleter)> Allocator(new AllocatorT, in testRegistryThreaded()
159 Threads[I] = std::thread(stressCache<AllocatorT>, Allocator.get()); in testRegistryThreaded()
205 using AllocatorT = MockAllocator<SharedCaches>; in TEST() typedef
206 auto Deleter = [](AllocatorT *A) { in TEST()
210 std::unique_ptr<AllocatorT, decltype(Deleter)> Allocator(new AllocatorT, in TEST()