/freebsd/tools/tools/ath/athsurvey/ |
H A D | athsurvey.c | 82 int cycle_count = 0, max_cycle_count = 0; in process_survey_stats() local 89 if (hs->samples[i].cycle_count == 0) in process_survey_stats() 96 cycle_count = hs->samples[i].cycle_count; in process_survey_stats() 97 if (cycle_count > max_cycle_count) in process_survey_stats() 98 max_cycle_count = cycle_count; in process_survey_stats() 104 hs->samples[i].cycle_count; in process_survey_stats() 106 hs->samples[i].cycle_count; in process_survey_stats() 108 hs->samples[i].cycle_count; in process_survey_stats() 110 hs->samples[i].cycle_count; in process_survey_stats() 118 hs->samples[i].cycle_count; in process_survey_stats() [all …]
|
/freebsd/contrib/opencsd/decoder/source/etmv3/ |
H A D | trc_pkt_elem_etmv3.cpp | 61 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()
|
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/ |
H A D | ar9300_ani.c | 349 ani_state->cycle_count = 0; in ar9300_ani_init_defaults() 799 ani_state->listen_time, ani_state->cycle_count, in ar9300_ani_control() 817 log_data.cycle_count = ani_state->cycle_count; in ar9300_ani_control() 1108 u_int32_t tx_frame_count, rx_frame_count, cycle_count; in ar9300_ani_get_listen_time() local 1116 cycle_count = OS_REG_READ(ah, AR_CCCNT); in ar9300_ani_get_listen_time() 1119 if (ani_state->cycle_count == 0 || ani_state->cycle_count > cycle_count) { in ar9300_ani_get_listen_time() 1130 __func__, ani_state->cycle_count); in ar9300_ani_get_listen_time() 1133 int32_t ccdelta = cycle_count - ani_state->cycle_count; in ar9300_ani_get_listen_time() 1155 ani_state->cycle_count = cycle_count; in ar9300_ani_get_listen_time()
|
H A D | ar9300_freebsd_inc.h | 168 u_int32_t cycle_count; member
|
H A D | ar9300_misc.c | 1686 u_int32_t cycle_count, ctl_busy, ext_busy; in ar9300_get_11n_ext_busy() local 1694 cycle_count = OS_REG_READ(ah, AR_CCCNT); in ar9300_get_11n_ext_busy() 1696 if ((ahp->ah_cycle_count == 0) || (ahp->ah_cycle_count > cycle_count) || in ar9300_get_11n_ext_busy() 1708 u_int32_t cycle_delta = cycle_count - ahp->ah_cycle_count; in ar9300_get_11n_ext_busy() 1743 ahp->ah_cycle_count = cycle_count; in ar9300_get_11n_ext_busy() 2121 p_cnts->cycle_count = OS_REG_READ(ah, AR_CCCNT); in ar9300_get_mib_cycle_counts() 3136 p_stats->cycle_count = OS_REG_READ(ah, AR_CCCNT);
|
/freebsd/sys/contrib/openzfs/module/icp/include/ |
H A D | generic_impl.c | 215 static uint32_t cycle_count = 0; in IMPL_GET_OPS() local 223 idx = (++cycle_count) % generic_supp_impls_cnt; in IMPL_GET_OPS()
|
/freebsd/contrib/opencsd/decoder/include/common/ |
H A D | trc_gen_elem.h | 121 cycle_count = cycleCount; in setCycleCount() 164 cycle_count = 0; in init()
|
/freebsd/contrib/opencsd/decoder/include/opencsd/ptm/ |
H A D | trc_pkt_elem_ptm.h | 118 const uint32_t getCCVal() const { return cycle_count; }; in getCCVal() 198 cycle_count = cycleCount; in SetCycleCount()
|
H A D | trc_pkt_types_ptm.h | 109 uint32_t cycle_count; /**< cycle count value associated with this packet. */ member
|
/freebsd/contrib/opencsd/decoder/include/opencsd/etmv3/ |
H A D | trc_pkt_elem_etmv3.h | 122 const uint32_t getCycleCount() const { return m_pkt_data.cycle_count; }; in getCycleCount() 228 m_pkt_data.cycle_count = cycleCount; in SetCycleCount()
|
H A D | trc_pkt_types_etmv3.h | 150 …uint32_t cycle_count; /**< cycle count associated with this packet (ETMv3 has counts in atom… member
|
/freebsd/contrib/opencsd/decoder/source/ptm/ |
H A D | trc_pkt_elem_ptm.cpp | 58 cycle_count = 0; in Clear() 374 oss << "Cycles=" << std::dec << cycle_count << "; "; in getCycleCountStr()
|
H A D | trc_pkt_decode_ptm.cpp | 314 m_output_elem.setCycleCount(m_curr_packet_in->cycle_count); in decodePacket()
|
/freebsd/contrib/opencsd/decoder/include/opencsd/ |
H A D | trc_gen_elem_types.h | 120 …uint32_t cycle_count; /**< cycle count for explicit cycle count element, or count for… member
|
/freebsd/sys/dev/ath/ |
H A D | if_ath_alq.h | 109 uint32_t cycle_count; member
|
/freebsd/contrib/opencsd/decoder/source/etmv4/ |
H A D | trc_pkt_elem_etmv4i.cpp | 163 oss << "; CC=" << std::hex << "0x" << cycle_count; in toString() 187 oss << "; Count=" << std::hex << "0x" << cycle_count; in toString()
|
/freebsd/contrib/opencsd/decoder/include/opencsd/etmv4/ |
H A D | trc_pkt_elem_etmv4i.h | 198 const uint32_t getCC() const { return pkt_valid.bits.cc_valid ? cycle_count : 0; }; in getCC() 293 cycle_count = value; in setCycleCount()
|
H A D | trc_pkt_types_etmv4.h | 219 uint32_t cycle_count; //!< cycle count member
|
/freebsd/contrib/opencsd/decoder/source/ |
H A D | trc_gen_elem.cpp | 230 oss << std::dec << " [CC=" << cycle_count << "]; "; in toString()
|
/freebsd/sys/contrib/openzfs/module/zcommon/ |
H A D | zfs_fletcher.c | 437 static uint32_t cycle_count = 0; in fletcher_4_impl_get() local 438 uint32_t idx = (++cycle_count) % fletcher_4_supp_impls_cnt; in fletcher_4_impl_get()
|
/freebsd/sys/dev/ath/ath_hal/ |
H A D | ah.h | 615 u_int32_t cycle_count; member 941 uint32_t cycle_count; member
|
/freebsd/sys/dev/ath/ath_hal/ar5416/ |
H A D | ar5416_misc.c | 238 hsample->cycle_count = cc - ahp->ah_cycleCount; in ar5416GetMibCycleCounts()
|
/freebsd/sys/contrib/dev/athk/ath10k/ |
H A D | wmi.c | 2672 arg->cycle_count = ev->cycle_count; in ath10k_wmi_op_pull_ch_info_ev() 2692 arg->cycle_count = ev->cycle_count; in ath10k_wmi_10_4_op_pull_ch_info_ev() 2730 survey->time = (params->cycle_count / params->mac_clk_mhz) / 1000; in ath10k_wmi_event_chan_info_unpaired() 2761 params->cycle_count, in ath10k_wmi_event_chan_info_paired() 2774 ar->survey_last_cycle_count = params->cycle_count; in ath10k_wmi_event_chan_info_paired() 2795 ch_info_param.cycle_count = __le32_to_cpu(arg.cycle_count); in ath10k_wmi_event_chan_info() 2802 ch_info_param.cycle_count); in ath10k_wmi_event_chan_info() 2865 dst->cycle_count = __le32_to_cpu(src->cycle_count); in ath10k_wmi_pull_pdev_stats_base() 8315 "Cycle count", pdev->cycle_count); in ath10k_wmi_fw_pdev_base_stats_fill()
|
H A D | wmi-tlv.h | 1656 u32 cycle_count; member 1668 __le32 cycle_count; member
|
/freebsd/usr.sbin/mfiutil/ |
H A D | mfi_show.c | 214 printf(" Charge Cycles: %d\n", cap.cycle_count); in show_battery()
|