• Home
  • Raw
  • Download

Lines Matching refs:CountingAllocator

32 class CountingAllocator;
220 class CountingAllocator class
227 struct rebind { using other = CountingAllocator<U, ID>; };
229 CountingAllocator() = delete;
230 explicit CountingAllocator(AllocController& PP) : P(&PP) {} in CountingAllocator() function in CountingAllocator
232 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
236 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
241 CountingAllocator(CountingAllocator<U, ID> const& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function in CountingAllocator
246 CountingAllocator(CountingAllocator<U, ID>&& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function in CountingAllocator
279 template <class Tp, size_t XID> friend class CountingAllocator;
285 class CountingAllocator<void, ID> class
293 struct rebind { using other = CountingAllocator<U, ID>; };
295 CountingAllocator() = delete;
296 explicit CountingAllocator(AllocController& PP) : P(&PP) {} in CountingAllocator() function in CountingAllocator
298 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
302 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
307 CountingAllocator(CountingAllocator<U, ID> const& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function in CountingAllocator
312 CountingAllocator(CountingAllocator<U, ID>&& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function in CountingAllocator
322 template <class Tp, size_t> friend class CountingAllocator;
327 inline bool operator==(CountingAllocator<T, ID> const& x, in operator ==()
328 CountingAllocator<U, ID> const& y) { in operator ==()
333 inline bool operator!=(CountingAllocator<T, ID> const& x, in operator !=()
334 CountingAllocator<U, ID> const& y) { in operator !=()