Home
last modified time | relevance | path

Searched refs:nothrow_t (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/bionic/
Dnew.cpp23 __attribute__((weak)) const std::nothrow_t std::nothrow = {};
43 void* operator new(std::size_t size, const std::nothrow_t&) { in operator new() argument
46 void* operator new[](std::size_t size, const std::nothrow_t&) { in operator new[]() argument
54 void operator delete(void* p, const std::nothrow_t&) noexcept { free(p); } in operator delete() argument
55 void operator delete[](void* p, const std::nothrow_t&) noexcept { free(p); } in operator delete[]() argument
/bionic/libstdc++/include/
Dnew25 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();