Searched refs:nothrow_t (Results 1 – 2 of 2) sorted by relevance
23 __attribute__((weak)) const std::nothrow_t std::nothrow = {};43 void* operator new(std::size_t size, const std::nothrow_t&) { in operator new() argument46 void* operator new[](std::size_t size, const std::nothrow_t&) { in operator new[]() argument54 void operator delete(void* p, const std::nothrow_t&) noexcept { free(p); } in operator delete() argument55 void operator delete[](void* p, const std::nothrow_t&) noexcept { free(p); } in operator delete[]() argument
25 struct nothrow_t {};26 extern const nothrow_t nothrow;30 void* operator new(std::size_t, const std::nothrow_t&);33 void operator delete(void*, const std::nothrow_t&) throw();36 void* operator new[](std::size_t, const std::nothrow_t&);39 void operator delete[](void*, const std::nothrow_t&) throw();