Lines Matching defs:new
1 //===--------------------------- new.cpp ----------------------------------===//
14 #include "new"
25 // shared library. The global holding the current new handler is
40 // Implement all new and delete operators as weak definitions
46 operator new(std::size_t size)
73 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT
80 p = ::operator new(size);
92 operator new[](size_t size)
97 return ::operator new(size);
102 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT
109 p = ::operator new[](size);