Home
last modified time | relevance | path

Searched refs:cycle_count (Results 1 – 16 of 16) sorted by relevance

/external/OpenCSD/decoder/source/etmv3/
Dtrc_pkt_elem_etmv3.cpp61 m_pkt_data.cycle_count = 0; in Clear()
173 m_pkt_data.cycle_count = E+N; in UpdateAtomFromPHdr()
186 m_pkt_data.cycle_count = 0; in UpdateAtomFromPHdr()
192 m_pkt_data.cycle_count = 1; in UpdateAtomFromPHdr()
199 m_pkt_data.cycle_count = ((pHdr >> 2) & 7) + 1; in UpdateAtomFromPHdr()
258 oss << "; Cycles=" << m_pkt_data.cycle_count; in toString()
520 if(!m_pkt_data.cycle_count) in getAtomStr()
550 for(uint32_t i = 0; i < m_pkt_data.cycle_count; i++) in getAtomStr()
556 oss << "; Cycles=" << m_pkt_data.cycle_count; in getAtomStr()
599 oss << "Cycles=" << std::dec << m_pkt_data.cycle_count << "; "; in getISyncStr()
/external/OpenCSD/decoder/docs/prog_guide/
Dprog_guide_generic_pkts.md58 …uint32_t cycle_count; /* cycle count for explicit cycle count element, or count for e…
128 __packet fields optional__: `has_cc -> cycle_count,`
142 the trace range. In this case `has_cc` will be 1 and `cycle_count` will be valid.
163 __packet fields optional__: `has_cc -> cycle_count,`
170 the trace on indicator. In this case `has_cc` will be 1 and `cycle_count` will be valid.
181 __packet fields optional__: `has_cc -> cycle_count,`
206 the PE context. In this case `has_cc` will be 1 and `cycle_count` will be valid.
213 __packet fields optional__: `has_cc -> cycle_count,`
228 __packet fields optional__: `has_cc -> cycle_count, excep_ret_addr -> en_addr, excep_data_marker, e…
254 __packet fields optional__: `has_cc -> cycle_count,`
[all …]
/external/OpenCSD/decoder/include/common/
Dtrc_gen_elem.h118 cycle_count = cycleCount; in setCycleCount()
161 cycle_count = 0; in init()
/external/OpenCSD/decoder/include/opencsd/ptm/
Dtrc_pkt_elem_ptm.h118 const uint32_t getCCVal() const { return cycle_count; }; in getCCVal()
198 cycle_count = cycleCount; in SetCycleCount()
Dtrc_pkt_types_ptm.h109 uint32_t cycle_count; /**< cycle count value associated with this packet. */ member
/external/OpenCSD/decoder/include/opencsd/etmv3/
Dtrc_pkt_elem_etmv3.h122 const uint32_t getCycleCount() const { return m_pkt_data.cycle_count; }; in getCycleCount()
228 m_pkt_data.cycle_count = cycleCount; in SetCycleCount()
Dtrc_pkt_types_etmv3.h150 …uint32_t cycle_count; /**< cycle count associated with this packet (ETMv3 has counts in atom… member
/external/OpenCSD/decoder/include/opencsd/
Dtrc_gen_elem_types.h96 …uint32_t cycle_count; /**< cycle count for explicit cycle count element, or count for… member
/external/OpenCSD/decoder/source/ptm/
Dtrc_pkt_elem_ptm.cpp58 cycle_count = 0; in Clear()
374 oss << "Cycles=" << std::dec << cycle_count << "; "; in getCycleCountStr()
Dtrc_pkt_decode_ptm.cpp314 m_output_elem.setCycleCount(m_curr_packet_in->cycle_count); in decodePacket()
/external/OpenCSD/decoder/source/etmv4/
Dtrc_pkt_elem_etmv4i.cpp155 oss << "; CC=" << std::hex << "0x" << cycle_count; in toString()
176 oss << "; Count=" << std::hex << "0x" << cycle_count; in toString()
/external/OpenCSD/decoder/source/
Dtrc_gen_elem.cpp196 oss << std::dec << " [CC=" << cycle_count << "]; "; in toString()
/external/OpenCSD/decoder/include/opencsd/etmv4/
Dtrc_pkt_elem_etmv4i.h197 const uint32_t getCC() const { return pkt_valid.bits.cc_valid ? cycle_count : 0; }; in getCC()
284 cycle_count = value; in setCycleCount()
Dtrc_pkt_types_etmv4.h201 uint32_t cycle_count; //!< cycle count member
/external/tensorflow/tensorflow/compiler/xla/client/
Dclient.cc475 int64 cycle_count = profile.compute_cycle_count(); in ExecutionStatsAsString() local
481 ", compute cycles: ", cycle_count, ", performance: ", gflops, in ExecutionStatsAsString()
/external/OpenCSD/decoder/tests/ext_dcd_test_eg/c_api_echo_test/
Dext_dcd_echo_test.c412 decoder->out_pkt.cycle_count = *((uint32_t *)mem_buffer); in analyse_packet()