Lines Matching defs:allocate
35 T* allocate(std::size_t n)
73 T* allocate(std::size_t n)
124 T* allocate(std::size_t n)
397 TEST_CONSTEXPR_CXX20 pointer allocate(std::ptrdiff_t n)
399 return pointer(std::allocator<T>().allocate(n));
422 TEST_CONSTEXPR_CXX20 T* allocate(std::size_t n)
424 return static_cast<T*>(std::allocator<T>().allocate(n));
447 TEST_CONSTEXPR_CXX20 T* allocate(std::size_t n) { return std::allocator<T>().allocate(n + 1) + 1; }
465 TEST_CONSTEXPR_CXX20 T* allocate(std::size_t n) {
466 T* memory = std::allocator<T>().allocate(n);