| /freebsd-13-stable/contrib/opencsd/decoder/source/etmv4/ |
| HD | trc_etmv4_stack_elem.cpp | 41 TrcStackElem *pElem = new (std::nothrow) TrcStackElem(p0_type, isP0, root_pkt, root_index); in createParamElemNoParam() 54 …TrcStackElemParam *pElem = new (std::nothrow) TrcStackElemParam(p0_type, isP0, root_pkt, root_inde… in createParamElem() 72 TrcStackElemAtom *pElem = new (std::nothrow) TrcStackElemAtom(root_pkt, root_index); in createAtomElem() 83 TrcStackElemExcept *pElem = new (std::nothrow) TrcStackElemExcept(root_pkt, root_index); in createExceptElem() 95 TrcStackElemCtxt *pElem = new (std::nothrow) TrcStackElemCtxt(root_pkt, root_index); in createContextElem() 111 TrcStackElemAddr *pElem = new (std::nothrow) TrcStackElemAddr(root_pkt, root_index); in createAddrElem() 122 TrcStackQElem *pElem = new (std::nothrow) TrcStackQElem(root_pkt, root_index); in createQElem()
|
| /freebsd-13-stable/contrib/opencsd/decoder/source/pkt_printers/ |
| HD | trc_print_fact.cpp | 41 pPrinter = new (std::nothrow)RawFramePrinter(); in createRawFramePrinter() 49 pPrinter = new (std::nothrow)TrcGenericElementPrinter(); in createGenElemPrinter() 60 pPrinter = new (std::nothrow) PacketPrinter<EtmV4ITrcPacket>(CSID); in createProtocolPrinter() 63 pPrinter = new (std::nothrow) PacketPrinter<EtmV3TrcPacket>(CSID); in createProtocolPrinter() 66 pPrinter = new (std::nothrow) PacketPrinter<PtmTrcPacket>(CSID); in createProtocolPrinter() 69 pPrinter = new (std::nothrow) PacketPrinter<StmTrcPacket>(CSID); in createProtocolPrinter()
|
| /freebsd-13-stable/contrib/opencsd/decoder/source/c_api/ |
| HD | ocsd_c_api.cpp | 48 namespace std { const nothrow_t nothrow = nothrow_t(); } variable 98 lib_dt_data_list *pList = new (std::nothrow) lib_dt_data_list; in ocsd_create_dcd_tree() 242 GenTraceElemCBObj * pCBObj = new (std::nothrow)GenTraceElemCBObj(pFn, p_context); in ocsd_dt_set_gen_elem_outfn() 484 *ppCBObj = new (std::nothrow) PktCBObj<EtmV4ITrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_sink_cb() 488 *ppCBObj = new (std::nothrow) PktCBObj<EtmV3TrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_sink_cb() 492 *ppCBObj = new (std::nothrow) PktCBObj<PtmTrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_sink_cb() 496 *ppCBObj = new (std::nothrow) PktCBObj<StmTrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_sink_cb() 502 *ppCBObj = new (std::nothrow) PktCBObj<void>(pPktInFn, p_context); in ocsd_create_pkt_sink_cb() 523 *ppCBObj = new (std::nothrow) PktMonCBObj<EtmV4ITrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_mon_cb() 527 *ppCBObj = new (std::nothrow) PktMonCBObj<EtmV3TrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_mon_cb() [all …]
|
| HD | ocsd_c_api_custom_obj.cpp | 62 CustomDcdMngrWrapper *pWrapper = new (std::nothrow) CustomDcdMngrWrapper(); in ocsd_register_custom_decoder() 125 CustomDecoderWrapper *pComp = new (std::nothrow) CustomDecoderWrapper(); in createDecoder() 180 CustomConfigWrapper *pConfig = new (std::nothrow) CustomConfigWrapper(pDataStruct); in createConfigFromDataStruct()
|
| /freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| HD | hwasan_new_delete.cpp | 25 # define OPERATOR_NEW_BODY(nothrow) \ argument 28 if (!nothrow && UNLIKELY(!res)) \ 31 # define OPERATOR_NEW_ALIGN_BODY(nothrow) \ argument 34 if (!nothrow && UNLIKELY(!res)) \ 49 # define OPERATOR_NEW_BODY(nothrow) return malloc(size) argument
|
| /freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| HD | dfsan_new_delete.cpp | 30 #define OPERATOR_NEW_BODY(nothrow) \ argument 32 if (!nothrow && UNLIKELY(!res)) { \ 37 #define OPERATOR_NEW_BODY_ALIGN(nothrow) \ argument 39 if (!nothrow && UNLIKELY(!res)) { \
|
| /freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/msan/ |
| HD | msan_new_delete.cpp | 33 # define OPERATOR_NEW_BODY(nothrow) \ argument 36 if (!nothrow && UNLIKELY(!res)) { \ 41 # define OPERATOR_NEW_BODY_ALIGN(nothrow) \ argument 44 if (!nothrow && UNLIKELY(!res)) { \
|
| /freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/memprof/ |
| HD | memprof_new_delete.cpp | 33 #define OPERATOR_NEW_BODY(type, nothrow) \ argument 36 if (!nothrow && UNLIKELY(!res)) \ 39 #define OPERATOR_NEW_BODY_ALIGN(type, nothrow) \ argument 42 if (!nothrow && UNLIKELY(!res)) \
|
| /freebsd-13-stable/contrib/llvm-project/libcxx/include/__memory/ |
| HD | temporary_buffer.h | 36 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), __al, nothrow)); in get_temporary_buffer() 38 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow)); in get_temporary_buffer() 47 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow)); in get_temporary_buffer()
|
| /freebsd-13-stable/contrib/opencsd/decoder/include/common/ |
| HD | ocsd_dcd_mngr.h | 343 pComp = new (std::nothrow) PktProc(instID); in createPktProc() 345 pComp = new (std::nothrow) PktProc(); in createPktProc() 353 pComp = new (std::nothrow)PktDcd(instID); in createPktDecode() 355 pComp = new (std::nothrow)PktDcd(); in createPktDecode() 361 return new (std::nothrow) Pc((PcSt *)pDataStruct); in createConfig() 386 pComp = new (std::nothrow) PktProc(instID); in createPktProc() 388 pComp = new (std::nothrow) PktProc(); in createPktProc() 394 return new (std::nothrow) Pc((PcSt *)pDataStruct); in createConfig()
|
| /freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/ |
| HD | asan_new_delete.cpp | 63 #define OPERATOR_NEW_BODY(type, nothrow) \ argument 66 if (!nothrow && UNLIKELY(!res)) \ 69 #define OPERATOR_NEW_BODY_ALIGN(type, nothrow) \ argument 72 if (!nothrow && UNLIKELY(!res)) \
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/ |
| HD | time.h | 18 #define __DEVICE__ static constexpr __attribute__((always_inline, nothrow)) 20 #define __DEVICE__ static __attribute__((always_inline, nothrow))
|
| /freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| HD | tsan_new_delete.cpp | 31 #define OPERATOR_NEW_BODY(mangled_name, nothrow) \ argument 38 if (!nothrow && UNLIKELY(!p)) { \ 46 #define OPERATOR_NEW_BODY_ALIGN(mangled_name, nothrow) \ argument 53 if (!nothrow && UNLIKELY(!p)) { \
|
| /freebsd-13-stable/contrib/llvm-project/libcxx/include/ |
| HD | memory | 200 …putIterator, sentinel-for<InputIterator> Sentinel1, nothrow-forward-iterator OutputIterator, nothr… 205 template<input_range InputRange, nothrow-forward-range OutputRange> 221 template<input_iterator InputIterator, nothrow-forward-iterator OutputIterator, nothrow-sentinel-fo… 233 template <nothrow-forward-iterator ForwardIterator, nothrow-sentinel-for<ForwardIterator> Sentinel,… 237 template <nothrow-forward-range ForwardRange, class T> 249 template <nothrow-forward-iterator ForwardIterator, class T> 275 template<nothrow-input-iterator InputIterator, nothrow-sentinel-for<InputIterator> Sentinel> 278 template<nothrow-input-range InputRange> 287 template<nothrow-input-iterator InputIterator> 300 …putIterator, sentinel_for<InputIterator> Sentinel1, nothrow-forward-iterator OutputIterator, nothr… [all …]
|
| /freebsd-13-stable/contrib/opencsd/decoder/source/ |
| HD | ocsd_error_logger.cpp | 72 m_output_logger = new (std::nothrow) ocsdMsgLogger(); in initErrorLogger() 156 *ppErr = new (std::nothrow) ocsdError(p_from); in CreateErrorObj()
|
| HD | ocsd_gen_elem_list.cpp | 130 p_new_array = new (std::nothrow) elemPtr_t[m_elemArraySize+increment]; in growArray() 137 p_new_array[m_elemArraySize+i].pElem = new (std::nothrow) OcsdTraceElement(); in growArray()
|
| HD | ocsd_gen_elem_stack.cpp | 144 p_new_array = new (std::nothrow) elemPtr_t[m_elemArraySize + increment]; in growArray() 153 pElem = new (std::nothrow) OcsdTraceElement(); in growArray()
|
| HD | ocsd_dcd_tree.cpp | 48 DecodeTree *dcd_tree = new (std::nothrow) DecodeTree(); in CreateDecodeTree() 182 m_default_mapper = new (std::nothrow) TrcMemAccMapGlobalSpace(); in createMemAccMapper() 535 m_frame_deformatter_root = new (std::nothrow) TraceFormatterFrameDecoder(); in initialise() 560 m_decode_elements[CSID] = new (std::nothrow) DecodeTreeElement(); in createDecodeElement()
|
| /freebsd-13-stable/contrib/opencsd/decoder/source/mem_acc/ |
| HD | trc_mem_acc_base.cpp | 49 pAcc = new (std::nothrow) TrcMemAccBufPtr(s_address,p_buffer,size); in CreateBufferAccessor() 69 pAcc = new (std::nothrow) TrcMemAccCB(s_address,e_address,mem_space); in CreateCBAccessor()
|
| /freebsd-13-stable/contrib/llvm-project/libcxx/src/ |
| HD | new_helpers.cpp | 15 const nothrow_t nothrow{}; variable
|
| /freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/lsan/ |
| HD | lsan_interceptors.cpp | 224 #define OPERATOR_NEW_BODY(nothrow)\ argument 228 if (!nothrow && UNLIKELY(!res)) ReportOutOfMemory(size, &stack);\ 230 #define OPERATOR_NEW_BODY_ALIGN(nothrow)\ argument 234 if (!nothrow && UNLIKELY(!res)) ReportOutOfMemory(size, &stack);\
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/ |
| HD | __clang_hip_stdlib.h | 20 #define __DEVICE__ static inline __attribute__((always_inline, nothrow))
|
| HD | __clang_cuda_runtime_wrapper.h | 405 __device__ void free(void *) __attribute((nothrow)); 406 __device__ void *malloc(size_t) __attribute((nothrow)) __attribute__((malloc));
|
| /freebsd-13-stable/contrib/opencsd/decoder/source/etmv3/ |
| HD | trc_pkt_proc_etmv3.cpp | 73 m_pProcessor = new (std::nothrow) EtmV3PktProcImpl(); in onProtocolConfig()
|
| /freebsd-13-stable/contrib/llvm-project/libcxx/modules/std/ |
| HD | new.inc | 21 using std::nothrow;
|