/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...] |
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_interceptors.cc | 48 struct nothrow_t; 228 void *operator new(size_t size, std::nothrow_t const&) 231 void *operator new[](size_t size, std::nothrow_t const&) 240 void *operator new(size_t size, std::align_val_t align, std::nothrow_t const&) 243 void *operator new[](size_t size, std::align_val_t align, std::nothrow_t const&) 251 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; } 253 void operator delete[](void *ptr, std::nothrow_t const &) 268 void operator delete(void *ptr, std::align_val_t, std::nothrow_t const&) 271 void operator delete[](void *ptr, std::align_val_t, std::nothrow_t const&) 286 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const& [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_allocator_testlib.cc | 193 struct nothrow_t; 198 void *operator new(size_t size, std::nothrow_t const&) ALIAS("malloc"); 199 void *operator new[](size_t size, std::nothrow_t const&) ALIAS("malloc"); 202 void operator delete(void *ptr, std::nothrow_t const&) ALIAS("free"); 203 void operator delete[](void *ptr, std::nothrow_t const&) ALIAS("free");
|