HomeSort by: relevance | last modified time | path
    Searched refs:OPERATOR_NEW_BODY (Results 1 - 12 of 12) sorted by relevancy

  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_new_delete.cpp 25 # define OPERATOR_NEW_BODY(nothrow) \
49 # define OPERATOR_NEW_BODY(nothrow) return malloc(size)
54 #ifdef OPERATOR_NEW_BODY
64 OPERATOR_NEW_BODY(false /*nothrow*/);
68 OPERATOR_NEW_BODY(false /*nothrow*/);
72 OPERATOR_NEW_BODY(true /*nothrow*/);
76 OPERATOR_NEW_BODY(true /*nothrow*/);
104 #endif // OPERATOR_NEW_BODY
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_new_delete.cpp 25 #define OPERATOR_NEW_BODY(nothrow) \
47 #define OPERATOR_NEW_BODY(nothrow) return malloc(size)
52 #ifdef OPERATOR_NEW_BODY
64 void *operator new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
66 void *operator new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
69 OPERATOR_NEW_BODY(true /*nothrow*/);
73 OPERATOR_NEW_BODY(true /*nothrow*/);
93 #endif // OPERATOR_NEW_BODY
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_new_delete.cpp 72 #define OPERATOR_NEW_BODY(type, nothrow) \
95 { OPERATOR_NEW_BODY(FROM_NEW, false /*nothrow*/); }
98 { OPERATOR_NEW_BODY(FROM_NEW_BR, false /*nothrow*/); }
101 { OPERATOR_NEW_BODY(FROM_NEW, true /*nothrow*/); }
104 { OPERATOR_NEW_BODY(FROM_NEW_BR, true /*nothrow*/); }
120 OPERATOR_NEW_BODY(FROM_NEW, false /*nothrow*/);
123 OPERATOR_NEW_BODY(FROM_NEW_BR, false /*nothrow*/);
126 OPERATOR_NEW_BODY(FROM_NEW, true /*nothrow*/);
129 OPERATOR_NEW_BODY(FROM_NEW_BR, true /*nothrow*/);
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_new_delete.cpp 72 #define OPERATOR_NEW_BODY(type, nothrow) \
95 { OPERATOR_NEW_BODY(FROM_NEW, false /*nothrow*/); }
98 { OPERATOR_NEW_BODY(FROM_NEW_BR, false /*nothrow*/); }
101 { OPERATOR_NEW_BODY(FROM_NEW, true /*nothrow*/); }
104 { OPERATOR_NEW_BODY(FROM_NEW_BR, true /*nothrow*/); }
120 OPERATOR_NEW_BODY(FROM_NEW, false /*nothrow*/);
123 OPERATOR_NEW_BODY(FROM_NEW_BR, false /*nothrow*/);
126 OPERATOR_NEW_BODY(FROM_NEW, true /*nothrow*/);
129 OPERATOR_NEW_BODY(FROM_NEW_BR, true /*nothrow*/);
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_new_delete.cc 34 #define OPERATOR_NEW_BODY(nothrow) \
46 void *operator new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
48 void *operator new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
51 OPERATOR_NEW_BODY(true /*nothrow*/);
55 OPERATOR_NEW_BODY(true /*nothrow*/);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_new_delete.cc 75 #define OPERATOR_NEW_BODY(type, nothrow) \
106 { OPERATOR_NEW_BODY(FROM_NEW, false /*nothrow*/); }
109 { OPERATOR_NEW_BODY(FROM_NEW_BR, false /*nothrow*/); }
112 { OPERATOR_NEW_BODY(FROM_NEW, true /*nothrow*/); }
115 { OPERATOR_NEW_BODY(FROM_NEW_BR, true /*nothrow*/); }
131 OPERATOR_NEW_BODY(FROM_NEW, false /*nothrow*/);
134 OPERATOR_NEW_BODY(FROM_NEW_BR, false /*nothrow*/);
137 OPERATOR_NEW_BODY(FROM_NEW, true /*nothrow*/);
140 OPERATOR_NEW_BODY(FROM_NEW_BR, true /*nothrow*/);
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_interceptors.cc 198 #define OPERATOR_NEW_BODY(nothrow)\
224 void *operator new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
226 void *operator new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
229 { OPERATOR_NEW_BODY(true /*nothrow*/); }
232 { OPERATOR_NEW_BODY(true /*nothrow*/); }
283 { OPERATOR_NEW_BODY(false /*nothrow*/); }
285 { OPERATOR_NEW_BODY(false /*nothrow*/); }
287 { OPERATOR_NEW_BODY(true /*nothrow*/); }
289 { OPERATOR_NEW_BODY(true /*nothrow*/); }
  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_interceptors.cpp 222 #define OPERATOR_NEW_BODY(nothrow)\
248 void *operator new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
250 void *operator new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
253 { OPERATOR_NEW_BODY(true /*nothrow*/); }
256 { OPERATOR_NEW_BODY(true /*nothrow*/); }
307 { OPERATOR_NEW_BODY(false /*nothrow*/); }
309 { OPERATOR_NEW_BODY(false /*nothrow*/); }
311 { OPERATOR_NEW_BODY(true /*nothrow*/); }
313 { OPERATOR_NEW_BODY(true /*nothrow*/); }
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_interceptors.cpp 222 #define OPERATOR_NEW_BODY(nothrow)\
248 void *operator new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
250 void *operator new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
253 { OPERATOR_NEW_BODY(true /*nothrow*/); }
256 { OPERATOR_NEW_BODY(true /*nothrow*/); }
307 { OPERATOR_NEW_BODY(false /*nothrow*/); }
309 { OPERATOR_NEW_BODY(false /*nothrow*/); }
311 { OPERATOR_NEW_BODY(true /*nothrow*/); }
313 { OPERATOR_NEW_BODY(true /*nothrow*/); }
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_new_delete.cc 32 #define OPERATOR_NEW_BODY(mangled_name, nothrow) \
65 OPERATOR_NEW_BODY(_Znwm, false /*nothrow*/);
71 OPERATOR_NEW_BODY(_Znam, false /*nothrow*/);
77 OPERATOR_NEW_BODY(_ZnwmRKSt9nothrow_t, true /*nothrow*/);
83 OPERATOR_NEW_BODY(_ZnamRKSt9nothrow_t, true /*nothrow*/);
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_new_delete.cpp 31 #define OPERATOR_NEW_BODY(mangled_name, nothrow) \
64 OPERATOR_NEW_BODY(_Znwm, false /*nothrow*/);
70 OPERATOR_NEW_BODY(_Znam, false /*nothrow*/);
76 OPERATOR_NEW_BODY(_ZnwmRKSt9nothrow_t, true /*nothrow*/);
82 OPERATOR_NEW_BODY(_ZnamRKSt9nothrow_t, true /*nothrow*/);
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_new_delete.cpp 31 #define OPERATOR_NEW_BODY(mangled_name, nothrow) \
64 OPERATOR_NEW_BODY(_Znwm, false /*nothrow*/);
70 OPERATOR_NEW_BODY(_Znam, false /*nothrow*/);
76 OPERATOR_NEW_BODY(_ZnwmRKSt9nothrow_t, true /*nothrow*/);
82 OPERATOR_NEW_BODY(_ZnamRKSt9nothrow_t, true /*nothrow*/);

Completed in 32 milliseconds