HomeSort by: relevance | last modified time | path
    Searched defs:nothrow_t (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_new_delete.cc 26 // Fake std::nothrow_t and std::align_val_t to avoid including <new>.
28 struct nothrow_t {}; struct in namespace:std
50 void *operator new(size_t size, std::nothrow_t const&) {
54 void *operator new[](size_t size, std::nothrow_t const&) {
64 void *operator new(size_t size, std::align_val_t align, std::nothrow_t const&)
67 void *operator new[](size_t size, std::align_val_t align, std::nothrow_t const&)
79 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; }
81 void operator delete[](void *ptr, std::nothrow_t const&) {
96 void operator delete(void *ptr, std::align_val_t align, std::nothrow_t const&)
99 void operator delete[](void *ptr, std::align_val_t align, std::nothrow_t const&
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_new_delete.cc 24 struct nothrow_t {}; struct in namespace:std
75 void *operator new(__sanitizer::uptr size, std::nothrow_t const&);
76 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) {
81 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&);
82 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) {
100 std::nothrow_t const&);
102 std::nothrow_t const&) {
109 std::nothrow_t const&);
111 std::nothrow_t const&) {
137 void operator delete(void *ptr, std::nothrow_t const&)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_new_delete.cc 66 // Fake std::nothrow_t and std::align_val_t to avoid including <new>.
68 struct nothrow_t {}; struct in namespace:std
111 void *operator new(size_t size, std::nothrow_t const&)
114 void *operator new[](size_t size, std::nothrow_t const&)
123 void *operator new(size_t size, std::align_val_t align, std::nothrow_t const&)
126 void *operator new[](size_t size, std::align_val_t align, std::nothrow_t const&)
136 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
139 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
172 void operator delete(void *ptr, std::nothrow_t const&)
175 void operator delete[](void *ptr, std::nothrow_t const&
    [all...]

Completed in 13 milliseconds