Searched refs:nothrow_t (Results 1 - 12 of 12) sorted by relevance

/freebsd-11.0-release/contrib/libstdc++/libsupc++/
H A Ddel_opvnt.cc35 operator delete[] (void *ptr, const std::nothrow_t&) throw ()
H A Ddel_opnt.cc37 operator delete (void *ptr, const std::nothrow_t&) throw ()
H A Dnew_opvnt.cc35 operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw()
H A Dnew_handler.cc35 const std::nothrow_t std::nothrow = { };
H A Dnew_opnt.cc41 operator new (std::size_t sz, const std::nothrow_t&) throw()
/freebsd-11.0-release/contrib/compiler-rt/lib/msan/
H A Dmsan_new_delete.cc24 // Fake std::nothrow_t to avoid including <new>.
26 struct nothrow_t {}; struct in namespace:std
39 void *operator new(size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
41 void *operator new[](size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
52 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; }
54 void operator delete[](void *ptr, std::nothrow_t const&) {
/freebsd-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_new_delete.cc35 // Fake std::nothrow_t to avoid including <new>.
37 struct nothrow_t {}; struct in namespace:std
66 void *operator new(size_t size, std::nothrow_t const&)
69 void *operator new[](size_t size, std::nothrow_t const&)
79 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
82 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
101 void operator delete(void *ptr, std::nothrow_t const&) {
105 void operator delete[](void *ptr, std::nothrow_t const&) {
126 INTERCEPTOR(void, _ZdlPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) {
129 INTERCEPTOR(void, _ZdaPvRKSt9nothrow_t, void *ptr, std::nothrow_t cons
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_new_delete.cc21 struct nothrow_t {}; struct in namespace:std
55 void *operator new(__sanitizer::uptr size, std::nothrow_t const&);
56 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) {
61 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&);
62 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) {
87 void operator delete(void *ptr, std::nothrow_t const&);
88 void operator delete(void *ptr, std::nothrow_t const&) {
93 void operator delete[](void *ptr, std::nothrow_t const&);
94 void operator delete[](void *ptr, std::nothrow_t const&) {
/freebsd-11.0-release/contrib/libstdc++/include/backward/
H A Dnew.h37 using std::nothrow_t;
/freebsd-11.0-release/contrib/libcxxrt/
H A Dmemory.cc44 struct nothrow_t {}; struct in namespace:std
109 void* operator new(size_t size, const std::nothrow_t &) NOEXCEPT
136 void * operator new[](size_t size, const std::nothrow_t &) NOEXCEPT
/freebsd-11.0-release/contrib/libc++/src/
H A Dnew.cpp69 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT
98 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT
125 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT
146 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT
164 const nothrow_t nothrow = {};
/freebsd-11.0-release/contrib/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cc48 struct nothrow_t;
158 void *operator new(uptr size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
160 void *operator new[](uptr size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
171 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; }
173 void operator delete[](void *ptr, std::nothrow_t const &) {

Completed in 97 milliseconds