Lines Matching defs:alloc
723 static T *alloc() noexcept;
727 allocation() noexcept : ptr(alloc()) {}
743 allocation alloc;
744 ::new (alloc.ptr) T(val);
745 this->ptr = alloc.ptr;
746 alloc.ptr = nullptr;
751 allocation alloc;
752 ::new (alloc.ptr) T(std::move(val));
753 this->ptr = alloc.ptr;
754 alloc.ptr = nullptr;
797 allocation alloc;
798 auto ptr = alloc.ptr;
800 alloc.ptr = nullptr;