Lines Matching defs:nothrow
224 #define OPERATOR_NEW_BODY(nothrow)\
228 if (!nothrow && UNLIKELY(!res)) ReportOutOfMemory(size, &stack);\
230 #define OPERATOR_NEW_BODY_ALIGN(nothrow)\
234 if (!nothrow && UNLIKELY(!res)) ReportOutOfMemory(size, &stack);\
250 void *operator new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
252 void *operator new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
255 { OPERATOR_NEW_BODY(true /*nothrow*/); }
258 { OPERATOR_NEW_BODY(true /*nothrow*/); }
261 { OPERATOR_NEW_BODY_ALIGN(false /*nothrow*/); }
264 { OPERATOR_NEW_BODY_ALIGN(false /*nothrow*/); }
267 { OPERATOR_NEW_BODY_ALIGN(true /*nothrow*/); }
270 { OPERATOR_NEW_BODY_ALIGN(true /*nothrow*/); }
309 { OPERATOR_NEW_BODY(false /*nothrow*/); }
311 { OPERATOR_NEW_BODY(false /*nothrow*/); }
313 { OPERATOR_NEW_BODY(true /*nothrow*/); }
315 { OPERATOR_NEW_BODY(true /*nothrow*/); }