Lines Matching refs:MinAlignedAllocator
339 class MinAlignedAllocator class
345 MinAlignedAllocator() = delete;
347 explicit MinAlignedAllocator(AllocController& R) : P(&R) {} in MinAlignedAllocator() function in MinAlignedAllocator
349 MinAlignedAllocator(MinAlignedAllocator const& other) : P(other.P) { in MinAlignedAllocator() function in MinAlignedAllocator
353 MinAlignedAllocator(MinAlignedAllocator&& other) : P(other.P) { in MinAlignedAllocator() function in MinAlignedAllocator
358 MinAlignedAllocator(MinAlignedAllocator<U> const& other) TEST_NOEXCEPT : P(other.P) { in MinAlignedAllocator() function in MinAlignedAllocator
363 MinAlignedAllocator(MinAlignedAllocator<U>&& other) TEST_NOEXCEPT : P(other.P) { in MinAlignedAllocator() function in MinAlignedAllocator
426 template <class Tp> friend class MinAlignedAllocator;
432 inline bool operator==(MinAlignedAllocator<T> const& x, in operator ==()
433 MinAlignedAllocator<U> const& y) { in operator ==()
438 inline bool operator!=(MinAlignedAllocator<T> const& x, in operator !=()
439 MinAlignedAllocator<U> const& y) { in operator !=()