/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_new_delete.cc | 21 struct nothrow_t {}; struct 51 void *operator new(__sanitizer::uptr size, std::nothrow_t const&); 52 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) { in operator new() 57 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&); 58 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) { in operator new[]() 83 void operator delete(void *ptr, std::nothrow_t const&); 84 void operator delete(void *ptr, std::nothrow_t const&) { in operator delete() 89 void operator delete[](void *ptr, std::nothrow_t const&); 90 void operator delete[](void *ptr, std::nothrow_t const&) { in operator delete[]()
|
/external/compiler-rt/lib/asan/ |
D | asan_new_delete.cc | 53 struct nothrow_t {}; struct 82 void *operator new(size_t size, std::nothrow_t const&) in operator new() 85 void *operator new[](size_t size, std::nothrow_t const&) in operator new[]() 95 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) { in INTERCEPTOR() 98 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t size, std::nothrow_t const&) { in INTERCEPTOR() 117 void operator delete(void *ptr, std::nothrow_t const&) { in operator delete() 121 void operator delete[](void *ptr, std::nothrow_t const&) { in operator delete[]() 142 INTERCEPTOR(void, _ZdlPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) { in INTERCEPTOR() 145 INTERCEPTOR(void, _ZdaPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) { in INTERCEPTOR()
|
/external/libcxx/include/ |
D | new | 43 struct nothrow_t {}; 44 extern const nothrow_t nothrow; 53 void* operator new(std::size_t size, const std::nothrow_t&) noexcept; // replaceable 55 const std::nothrow_t&) noexcept; // replaceable, C++17 61 void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable 63 const std::nothrow_t&) noexcept; // replaceable, C++17 68 void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable 70 const std::nothrow_t&) noexcept; // replaceable, C++17 77 void operator delete[](void* ptr, const std::nothrow_t&) noexcept; // replaceable 79 const std::nothrow_t&) noexcept; // replaceable, C++17 [all …]
|
/external/libcxx/src/ |
D | new.cpp | 37 const nothrow_t nothrow = {}; 89 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT in operator new() argument 115 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT in operator new[]() argument 142 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete() argument 163 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete[]() argument 211 operator new(size_t size, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT in operator new() argument 237 operator new[](size_t size, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT in operator new[]() argument 268 operator delete(void* ptr, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT in operator delete() argument 289 operator delete[] (void* ptr, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT in operator delete[]() argument
|
/external/compiler-rt/lib/msan/ |
D | msan_new_delete.cc | 26 struct nothrow_t {}; struct 39 void *operator new(size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; } in operator new() 41 void *operator new[](size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; } in operator new[]() 52 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; } in operator delete() 54 void operator delete[](void *ptr, std::nothrow_t const&) { in operator delete[]()
|
/external/compiler-rt/lib/scudo/ |
D | scudo_new_delete.cpp | 26 struct nothrow_t {}; struct 38 void *operator new(size_t size, std::nothrow_t const&) { in operator new() 42 void *operator new[](size_t size, std::nothrow_t const&) { in operator new[]() 55 void operator delete(void *ptr, std::nothrow_t const&) NOEXCEPT { in operator delete() 59 void operator delete[](void *ptr, std::nothrow_t const&) NOEXCEPT { in operator delete[]()
|
/external/clang/test/CodeGenCXX/ |
D | new.cpp | 23 struct nothrow_t {}; struct 25 std::nothrow_t nothrow; 34 void *operator new(size_t, const std::nothrow_t &) throw(); 35 void *operator new[](size_t, const std::nothrow_t &) throw(); 36 void operator delete(void *, const std::nothrow_t &) throw(); 37 void operator delete[](void *, const std::nothrow_t &) throw();
|
/external/libchrome/base/allocator/ |
D | allocator_shim_override_cpp_symbols.h | 30 const std::nothrow_t&) __THROW 34 const std::nothrow_t&) __THROW 37 SHIM_ALWAYS_EXPORT void operator delete(void* p, const std::nothrow_t&) __THROW 41 const std::nothrow_t&) __THROW
|
/external/clang/test/CodeGen/ |
D | address-sanitizer-and-array-cookie.cpp | 6 struct nothrow_t {}; struct 7 std::nothrow_t nothrow; 9 void *operator new[](size_t, const std::nothrow_t &) throw();
|
/external/libcxxabi/src/ |
D | cxa_new_delete.cpp | 75 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT in operator new() argument 112 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT in operator new[]() argument 150 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete() argument 174 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete[]() argument
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_allocator_testlib.cc | 154 struct nothrow_t; 159 void *operator new(size_t size, std::nothrow_t const&) ALIAS("malloc"); 160 void *operator new[](size_t size, std::nothrow_t const&) ALIAS("malloc"); 163 void operator delete(void *ptr, std::nothrow_t const&) ALIAS("free"); 164 void operator delete[](void *ptr, std::nothrow_t const&) ALIAS("free");
|
/external/valgrind/massif/tests/ |
D | overloaded-new.cpp | 10 using std::nothrow_t; 22 __attribute__((noinline)) void* operator new (std::size_t n, std::nothrow_t const &) in operator new() 32 __attribute__((noinline)) void* operator new[] (std::size_t n, std::nothrow_t const &) in operator new[]()
|
D | overloaded-new.post.exp-mips32 | 48 ->33.24% (4,000B) 0x........: operator new(unsigned int, std::nothrow_t const&) (overloaded-new.cpp… 54 ->16.62% (2,000B) 0x........: operator new[](unsigned int, std::nothrow_t const&) (overloaded-new.c…
|
D | new-cpp.cpp | 10 using std::nothrow_t;
|
/external/clang/test/Analysis/Inputs/ |
D | system-header-simulator-cxx.h | 78 struct nothrow_t {}; struct 80 extern const nothrow_t nothrow; 234 void* operator new(std::size_t, const std::nothrow_t&) throw(); 235 void* operator new[](std::size_t, const std::nothrow_t&) throw(); 236 void operator delete(void*, const std::nothrow_t&) throw(); 237 void operator delete[](void*, const std::nothrow_t&) throw();
|
/external/compiler-rt/lib/lsan/ |
D | lsan_interceptors.cc | 50 struct nothrow_t; 168 void *operator new(uptr size, std::nothrow_t const&) { OPERATOR_NEW_BODY; } in operator new() 170 void *operator new[](uptr size, std::nothrow_t const&) { OPERATOR_NEW_BODY; } in operator new[]() 181 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; } in operator delete() 183 void operator delete[](void *ptr, std::nothrow_t const &) { in operator delete[]()
|
/external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/ |
D | sized_delete_calls_unsized_delete.pass.cpp | 32 void operator delete(void* p, const std::nothrow_t&) TEST_NOEXCEPT in operator delete() argument
|
D | sized_delete11.pass.cpp | 35 void operator delete(void* p, const std::nothrow_t&) TEST_NOEXCEPT in operator delete() argument
|
D | sized_delete14.pass.cpp | 40 void operator delete(void* p, const std::nothrow_t&) TEST_NOEXCEPT in operator delete() argument
|
D | sized_delete_fsizeddeallocation.sh.cpp | 48 void operator delete(void* p, const std::nothrow_t&) TEST_NOEXCEPT in operator delete() argument
|
/external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/ |
D | sized_delete_array_calls_unsized_delete_array.pass.cpp | 32 void operator delete[](void* p, const std::nothrow_t&) TEST_NOEXCEPT in operator delete[]() argument
|
D | sized_delete_array11.pass.cpp | 35 void operator delete[](void* p, const std::nothrow_t&) TEST_NOEXCEPT in operator delete[]() argument
|
D | sized_delete_array14.pass.cpp | 40 void operator delete[](void* p, const std::nothrow_t&) TEST_NOEXCEPT in operator delete[]() argument
|
D | sized_delete_array_fsizeddeallocation.sh.cpp | 48 void operator delete[](void* p, const std::nothrow_t&) TEST_NOEXCEPT in operator delete[]() argument
|
/external/clang/test/Analysis/ |
D | NewDelete-custom.cpp | 14 void *operator new(std::size_t size, std::nothrow_t& nothrow) throw() { return allocator(size); } in operator new()
|