Home
last modified time | relevance | path

Searched refs:nothrow (Results 1 – 25 of 62) sorted by relevance

123

/freebsd/contrib/opencsd/decoder/source/etmv4/
H A Dtrc_etmv4_stack_elem.cpp41 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()
133 TrcStackElemMarker *pElem = new (std::nothrow) TrcStackElemMarker(root_pkt, root_index); in createMarkerElem()
144 TrcStackElemAddr *pElem = new (std::nothrow) TrcStackElemAddr(root_pkt, root_index, true); in createSrcAddrElem()
155 TrcStackElemITE *pElem = new (std::nothrow) TrcStackElemITE(root_pkt, root_index); in createITEElem()
/freebsd/contrib/opencsd/decoder/source/pkt_printers/
H A Dtrc_print_fact.cpp41 pPrinter = new (std::nothrow)RawFramePrinter(); in createRawFramePrinter()
49 pPrinter = new (std::nothrow)TrcGenericElementPrinter(); in createGenElemPrinter()
61 pPrinter = new (std::nothrow) PacketPrinter<EtmV4ITrcPacket>(CSID); in createProtocolPrinter()
64 pPrinter = new (std::nothrow) PacketPrinter<EtmV3TrcPacket>(CSID); in createProtocolPrinter()
67 pPrinter = new (std::nothrow) PacketPrinter<PtmTrcPacket>(CSID); in createProtocolPrinter()
70 pPrinter = new (std::nothrow) PacketPrinter<StmTrcPacket>(CSID); in createProtocolPrinter()
/freebsd/contrib/opencsd/decoder/include/common/
H A Docsd_dcd_mngr.h343 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()
385 pComp = new (std::nothrow) PktProc(instID); in createPktProc()
387 pComp = new (std::nothrow) PktProc(); in createPktProc()
395 pComp = new (std::nothrow)PktDcd(instID); in createPktDecode()
397 pComp = new (std::nothrow)PktDcd(); in createPktDecode()
403 return new (std::nothrow) PcEx((PcSt *)pDataStruct); in createConfig()
[all …]
/freebsd/contrib/opencsd/decoder/source/c_api/
H A Docsd_c_api.cpp48 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()
258 GenTraceElemCBObj * pCBObj = new (std::nothrow)GenTraceElemCBObj(pFn, p_context); in ocsd_dt_set_gen_elem_outfn()
533 *ppCBObj = new (std::nothrow) PktCBObj<EtmV4ITrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_sink_cb()
537 *ppCBObj = new (std::nothrow) PktCBObj<EtmV3TrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_sink_cb()
541 *ppCBObj = new (std::nothrow) PktCBObj<PtmTrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_sink_cb()
545 *ppCBObj = new (std::nothrow) PktCBObj<StmTrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_sink_cb()
551 *ppCBObj = new (std::nothrow) PktCBObj<void>(pPktInFn, p_context); in ocsd_create_pkt_sink_cb()
572 *ppCBObj = new (std::nothrow) PktMonCBObj<EtmV4ITrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_mon_cb()
576 *ppCBObj = new (std::nothrow) PktMonCBObj<EtmV3TrcPacket>(pPktInFn,p_context); in ocsd_create_pkt_mon_cb()
[all …]
H A Docsd_c_api_custom_obj.cpp62 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/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_new_delete.cpp33 # define OPERATOR_NEW_BODY(nothrow) \ argument
36 if (!nothrow && UNLIKELY(!res)) { \
41 # define OPERATOR_NEW_BODY_ALIGN(nothrow) \
44 if (!nothrow && UNLIKELY(!res)) { \
51 void *operator new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); } in operator new()
53 void *operator new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); } in operator new[]()
56 OPERATOR_NEW_BODY(true /*nothrow*/);
60 OPERATOR_NEW_BODY(true /*nothrow*/); in operator new[]()
64 { OPERATOR_NEW_BODY_ALIGN(false /*nothrow*/); } in operator new()
67 { OPERATOR_NEW_BODY_ALIGN(false /*nothrow*/); } in operator new[]()
38 OPERATOR_NEW_BODY_ALIGN(nothrow) global() argument
[all...]
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_new_delete.cpp30 #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/contrib/llvm-project/compiler-rt/lib/nsan/
H A Dnsan_new_delete.cpp30 #define OPERATOR_NEW_BODY(nothrow) \ argument
32 if (!nothrow && UNLIKELY(!res)) { \
38 #define OPERATOR_NEW_BODY_ALIGN(nothrow) \ argument
40 if (!nothrow && UNLIKELY(!res)) { \
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_new_delete.cpp33 #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/contrib/llvm-project/libcxx/include/__cxx03/__memory/
H A Dtemporary_buffer.h36 __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/contrib/llvm-project/libcxx/include/__memory/
H A Dunique_temporary_buffer.h69 __ptr = static_cast<_Tp*>(::operator new(__count * sizeof(_Tp), __al, nothrow)); in __allocate_unique_temporary_buffer()
71 __ptr = static_cast<_Tp*>(::operator new(__count * sizeof(_Tp), nothrow)); in __allocate_unique_temporary_buffer()
79 __ptr = static_cast<_Tp*>(::operator new(__count * sizeof(_Tp), nothrow)); in __allocate_unique_temporary_buffer()
/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dtime.h18 #define __DEVICE__ static constexpr __attribute__((always_inline, nothrow))
20 #define __DEVICE__ static __attribute__((always_inline, nothrow))
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_new_delete.cpp31 #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/contrib/llvm-project/libcxx/include/__cxx03/
H A Dmemory200 …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/contrib/llvm-project/libcxx/include/
H A Dmemory200 …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/contrib/opencsd/decoder/source/
H A Docsd_error_logger.cpp72 m_output_logger = new (std::nothrow) ocsdMsgLogger(); in initErrorLogger()
156 *ppErr = new (std::nothrow) ocsdError(p_from); in CreateErrorObj()
H A Docsd_gen_elem_list.cpp130 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()
H A Docsd_gen_elem_stack.cpp145 p_new_array = new (std::nothrow) elemPtr_t[m_elemArraySize + increment]; in growArray()
154 pElem = new (std::nothrow) OcsdTraceElement(); in growArray()
/freebsd/contrib/opencsd/decoder/source/mem_acc/
H A Dtrc_mem_acc_base.cpp49 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/contrib/llvm-project/libcxx/src/
H A Dnew_helpers.cpp15 const nothrow_t nothrow{}; variable
/freebsd/contrib/llvm-project/libcxx/include/__new/
H A Dnothrow_t.h25 extern _LIBCPP_EXPORTED_FROM_ABI const nothrow_t nothrow;
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp253 #define OPERATOR_NEW_BODY(nothrow)\ argument
257 if (!nothrow && UNLIKELY(!res)) ReportOutOfMemory(size, &stack);\
259 #define OPERATOR_NEW_BODY_ALIGN(nothrow)\ argument
263 if (!nothrow && UNLIKELY(!res)) ReportOutOfMemory(size, &stack);\
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DMemAlloc.cpp20 std::nothrow); in allocate_buffer()
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_hip_stdlib.h20 #define __DEVICE__ static inline __attribute__((always_inline, nothrow))
/freebsd/contrib/jemalloc/src/
H A Djemalloc_cpp.cpp58 handleOOM(std::size_t size, bool nothrow) { in handleOOM() argument
89 if (ptr == nullptr && !nothrow) in handleOOM()

123