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

  /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/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*/);

Completed in 30 milliseconds