Searched refs:OPERATOR_NEW_BODY_ALIGN (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_new_delete.cpp31 #define OPERATOR_NEW_BODY_ALIGN(Type, Align, NoThrow) \ macro
36 OPERATOR_NEW_BODY_ALIGN(Type, 0, NoThrow)
52 { OPERATOR_NEW_BODY_ALIGN(FromNew, align, /*NoThrow=*/false); }
55 { OPERATOR_NEW_BODY_ALIGN(FromNewArray, align, /*NoThrow=*/false); }
58 { OPERATOR_NEW_BODY_ALIGN(FromNew, align, /*NoThrow=*/true); }
61 { OPERATOR_NEW_BODY_ALIGN(FromNewArray, align, /*NoThrow=*/true); }
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_new_delete.cpp38 #define OPERATOR_NEW_BODY_ALIGN(nothrow) \ macro
58 { OPERATOR_NEW_BODY_ALIGN(false /*nothrow*/); }
61 { OPERATOR_NEW_BODY_ALIGN(false /*nothrow*/); }
64 { OPERATOR_NEW_BODY_ALIGN(true /*nothrow*/); }
67 { OPERATOR_NEW_BODY_ALIGN(true /*nothrow*/); }
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_new_delete.cpp81 #define OPERATOR_NEW_BODY_ALIGN(type, nothrow) \ macro
111 { OPERATOR_NEW_BODY_ALIGN(FROM_NEW, false /*nothrow*/); }
114 { OPERATOR_NEW_BODY_ALIGN(FROM_NEW_BR, false /*nothrow*/); }
117 { OPERATOR_NEW_BODY_ALIGN(FROM_NEW, true /*nothrow*/); }
120 { OPERATOR_NEW_BODY_ALIGN(FROM_NEW_BR, true /*nothrow*/); }
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_new_delete.cpp46 #define OPERATOR_NEW_BODY_ALIGN(mangled_name, nothrow) \ macro
88 OPERATOR_NEW_BODY_ALIGN(_ZnwmSt11align_val_t, false /*nothrow*/);
94 OPERATOR_NEW_BODY_ALIGN(_ZnamSt11align_val_t, false /*nothrow*/);
102 OPERATOR_NEW_BODY_ALIGN(_ZnwmSt11align_val_tRKSt9nothrow_t,
111 OPERATOR_NEW_BODY_ALIGN(_ZnamSt11align_val_tRKSt9nothrow_t,
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp215 #define OPERATOR_NEW_BODY_ALIGN(nothrow)\ macro
246 { OPERATOR_NEW_BODY_ALIGN(false /*nothrow*/); }
249 { OPERATOR_NEW_BODY_ALIGN(false /*nothrow*/); }
252 { OPERATOR_NEW_BODY_ALIGN(true /*nothrow*/); }
255 { OPERATOR_NEW_BODY_ALIGN(true /*nothrow*/); }

Completed in 111 milliseconds