/kernel/linux/linux-5.10/drivers/devfreq/event/ |
D | exynos-ppmu.c | 201 unsigned int total_count, load_count; in exynos_ppmu_get_event() local 220 ret = regmap_read(info->regmap, PPMU_CCNT, &total_count); in exynos_ppmu_get_event() 223 edata->total_count = total_count; in exynos_ppmu_get_event() 261 edata->load_count, edata->total_count); in exynos_ppmu_get_event() 422 unsigned int total_count, count; in exynos_ppmu_v2_get_event() local 436 ret = regmap_read(info->regmap, PPMU_V2_CCNT, &total_count); in exynos_ppmu_v2_get_event() 439 edata->total_count = total_count; in exynos_ppmu_v2_get_event() 476 edata->load_count, edata->total_count); in exynos_ppmu_v2_get_event()
|
D | exynos-nocp.c | 168 edata->total_count = ((counter[3] << 16) | counter[2]); in exynos_nocp_get_event() 171 edata->load_count, edata->total_count); in exynos_nocp_get_event()
|
D | rockchip-dfi.c | 158 edata->total_count = info->ch_usage[busier_ch].total; in rockchip_dfi_get_event()
|
/kernel/linux/common_modules/ucollection/ |
D | ucollection_process_cpu.c | 124 if (kentry.cur_count >= kentry.total_count) { in ioctrl_collect_process_cpu() 205 if (thread_count >= kentry->total_count) { in read_thread_info_locked() 227 if (current->tgid != kentry.filter.pid || kentry.cur_count >= kentry.total_count) { in ioctrl_collect_app_thread_cpu() 245 if (kentry.cur_count >= kentry.total_count) { in ioctrl_collect_the_thread_cpu() 265 if (kentry.cur_count >= kentry.total_count) { in ioctrl_collect_the_process_cpu()
|
D | unified_collection_data.h | 29 unsigned int total_count; member 55 unsigned int total_count; member
|
/kernel/linux/linux-5.10/drivers/devfreq/ |
D | exynos-bus.c | 66 unsigned long load_count = 0, total_count = 0; in exynos_bus_get_event() local 79 total_count = event_data.total_count; in exynos_bus_get_event() 84 edata->total_count = total_count; in exynos_bus_get_event() 135 stat->total_time = edata.total_count; in exynos_bus_get_dev_status()
|
D | devfreq-event.c | 174 edata->total_count = edata->load_count = 0; in devfreq_event_get_event() 179 edata->total_count = edata->load_count = 0; in devfreq_event_get_event()
|
D | rk3399_dmc.c | 178 stat->total_time = edata.total_count; in rk3399_dmcfreq_get_dev_status()
|
/kernel/linux/linux-5.10/include/linux/ |
D | devfreq-event.h | 49 unsigned long total_count; member
|
/kernel/linux/linux-5.10/tools/perf/util/ |
D | kvm-stat.h | 95 u64 total_count; member
|
/kernel/linux/linux-5.10/fs/xfs/ |
D | xfs_trans_dquot.c | 590 xfs_qcnt_t total_count = res->reserved + delta; in xfs_dqresv_check() local 605 if (hardlimit && total_count > hardlimit) { in xfs_dqresv_check() 610 if (softlimit && total_count > softlimit) { in xfs_dqresv_check()
|
/kernel/linux/linux-5.10/fs/f2fs/ |
D | namei.c | 228 int total_count = cold_count + hot_count; in f2fs_update_extension_list() local 233 if (total_count == F2FS_MAX_EXTENSION) in f2fs_update_extension_list() 244 count = total_count; in f2fs_update_extension_list() 258 F2FS_EXTENSION_LEN * (total_count - i - 1)); in f2fs_update_extension_list() 259 memset(extlist[total_count - 1], 0, F2FS_EXTENSION_LEN); in f2fs_update_extension_list()
|
/kernel/linux/linux-5.10/fs/orangefs/ |
D | inode.c | 563 ssize_t total_count = 0; in orangefs_direct_IO() local 620 total_count += ret; in orangefs_direct_IO() 638 if (total_count > 0) in orangefs_direct_IO() 639 ret = total_count; in orangefs_direct_IO()
|
/kernel/linux/linux-5.10/drivers/memory/samsung/ |
D | exynos5422-dmc.c | 731 unsigned long *total_count) in exynos5_counters_get() argument 750 if (total < event.total_count) in exynos5_counters_get() 751 total = event.total_count; in exynos5_counters_get() 754 *total_count = total; in exynos5_counters_get()
|
/kernel/linux/linux-5.10/net/batman-adv/ |
D | bat_iv_ogm.c | 1079 u8 total_count; in batadv_iv_ogm_calc_tq() local 1133 total_count = neigh_rq_count; in batadv_iv_ogm_calc_tq() 1135 total_count = orig_eq_count; in batadv_iv_ogm_calc_tq() 1140 if (total_count < BATADV_TQ_LOCAL_BIDRECT_SEND_MINIMUM || in batadv_iv_ogm_calc_tq() 1148 tq_own = (BATADV_TQ_MAX_VALUE * total_count) / neigh_rq_count; in batadv_iv_ogm_calc_tq() 1185 orig_node->orig, orig_neigh_node->orig, total_count, in batadv_iv_ogm_calc_tq()
|
D | multicast.c | 1386 int ret, tt_count, ip_count, unsnoop_count, total_count; in batadv_mcast_forw_mode() local 1408 total_count = tt_count + ip_count + unsnoop_count + rtr_count; in batadv_mcast_forw_mode() 1410 switch (total_count) { in batadv_mcast_forw_mode() 1431 if (!unsnoop_count && total_count <= mcast_fanout) in batadv_mcast_forw_mode()
|
/kernel/linux/linux-5.10/tools/perf/ |
D | builtin-kvm.c | 533 kvm->total_count += get_event_count(event, vcpu); in update_total_count() 640 pr_info("%8.2f%% ", (double)ecount / kvm->total_count * 100); in print_result() 650 kvm->total_count, kvm->total_time / (double)NSEC_PER_USEC); in print_result() 905 kvm->total_count = 0; in perf_kvm__handle_timerfd()
|
/kernel/linux/linux-5.10/include/rdma/ |
D | rdma_vt.h | 185 atomic_t total_count; member
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/ |
D | dc.h | 372 unsigned long long total_count; member 387 dc->debug.bw_val_profile.total_count++
|
/kernel/linux/linux-5.10/drivers/staging/unisys/visornic/ |
D | visornic_main.c | 243 unsigned int total_count; in visor_copy_fragsinfo_from_skb() local 250 total_count = numfrags + (firstfraglen / PI_PAGE_SIZE); in visor_copy_fragsinfo_from_skb() 252 total_count++; in visor_copy_fragsinfo_from_skb() 254 if (total_count > frags_max) { in visor_copy_fragsinfo_from_skb()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/pasemi/ |
D | pasemi_mac.c | 821 unsigned int total_count; in pasemi_mac_clean_tx() local 828 total_count = 0; in pasemi_mac_clean_tx() 896 total_count += descr_count; in pasemi_mac_clean_tx() 902 return total_count; in pasemi_mac_clean_tx()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/neterion/vxge/ |
D | vxge-config.c | 52 int count = 0, total_count = 0; in vxge_hw_vpath_wait_receive_idle() local 84 total_count++; in vxge_hw_vpath_wait_receive_idle() 86 (total_count < VXGE_HW_MAX_POLLING_COUNT)); in vxge_hw_vpath_wait_receive_idle() 88 if (total_count >= VXGE_HW_MAX_POLLING_COUNT) in vxge_hw_vpath_wait_receive_idle() 92 return total_count; in vxge_hw_vpath_wait_receive_idle() 101 int i, total_count = 0; in vxge_hw_device_wait_receive_idle() local 107 total_count += vxge_hw_vpath_wait_receive_idle(hldev, i); in vxge_hw_device_wait_receive_idle() 108 if (total_count >= VXGE_HW_MAX_POLLING_COUNT) in vxge_hw_device_wait_receive_idle()
|
/kernel/linux/linux-5.10/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/ |
D | tc_flower.sh | 713 local total_count=$3 719 for ((i=1;i<=total_count;i++)); do
|
/kernel/linux/linux-5.10/drivers/scsi/cxgbi/ |
D | libcxgbi.h | 554 u32 total_count; member
|
/kernel/linux/linux-5.10/drivers/md/ |
D | dm-thin-metadata.c | 1675 unsigned count, total_count = 0; in __remove_range() local 1717 total_count += count; in __remove_range() 1720 td->mapped_blocks -= total_count; in __remove_range()
|