Home | History | Annotate | Download | only in src

Lines Matching defs:new

9 // This file implements the new and delete operators.
14 #include <new>
18 [new.delete.single]
36 operator new(std::size_t size)
62 [new.delete.single]
64 Calls operator new(size). If the call returns normally, returns the result of
69 operator new(size_t size, const std::nothrow_t&)
79 p = ::operator new(size);
88 [new.delete.array]
90 Returns operator new(size).
94 operator new[](size_t size)
99 return ::operator new(size);
103 [new.delete.array]
105 Calls operator new[](size). If the call returns normally, returns the result
110 operator new[](size_t size, const std::nothrow_t&)
120 p = ::operator new[](size);
129 [new.delete.single]
132 earlier call to operator new.
148 [new.delete.single]
165 [new.delete.array]
182 [new.delete.array]