| /OK3568_Linux_fs/u-boot/board/armltd/integrator/ |
| H A D | timer.c | 36 static unsigned long long total_count = 0; variable 81 total_count = 0ULL; in timer_init() 128 total_count += lastdec + TIMER_LOAD_VAL + 1 - now; in get_timer_masked() 130 total_count += lastdec - now; in get_timer_masked() 135 now = total_count; in get_timer_masked()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/gdb/python/gdb/command/ |
| H A D | pretty_printers.py | 190 total_count = 0 193 total_count += t_total 196 total_count += t_total 200 total_count += t_total 201 return (enabled_count, total_count) 216 (enabled_count, total_count) = count_all_enabled_printers() 217 print ("%d of %d printers enabled" % (enabled_count, total_count))
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/gdb/python/gdb/command/ |
| H A D | pretty_printers.py | 190 total_count = 0 193 total_count += t_total 196 total_count += t_total 200 total_count += t_total 201 return (enabled_count, total_count) 216 (enabled_count, total_count) = count_all_enabled_printers() 217 print ("%d of %d printers enabled" % (enabled_count, total_count))
|
| /OK3568_Linux_fs/kernel/drivers/devfreq/event/ |
| H A 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()
|
| H A D | rockchip-dfi.c | 187 edata->total_count = dfi_timer; in rk3128_dfi_get_event() 241 u32 rd_count, wr_count, total_count; in rk3288_dfi_get_busier_ch() local 254 RK3288_GRF_SOC_STATUS(14 + i * 4), &total_count); in rk3288_dfi_get_busier_ch() 256 info->ch_usage[i].total = total_count; in rk3288_dfi_get_busier_ch() 280 edata->total_count = info->ch_usage[busier_ch].total; in rk3288_dfi_get_event() 343 edata->total_count = dfi_timer; in rk3368_dfi_get_event() 506 edata->total_count = info->ch_usage[busier_ch].total; in rockchip_dfi_get_event()
|
| H A 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()
|
| /OK3568_Linux_fs/kernel/drivers/devfreq/ |
| H A 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()
|
| H A 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()
|
| /OK3568_Linux_fs/external/rk_pcba_test/mic_test_Linux/ |
| H A D | record_test.c | 535 unsigned long total_count = 0; // �ܵĴ��� in check_agreement() local 559 total_count++; in check_agreement() 575 pass_rate = pass_count * 100 / total_count; in check_agreement() 576 …ss_count is %d, total_count is %d, pass_rate is %d\n", signal, pass_count, total_count, pass_rate); in check_agreement()
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | buildstats-summary.bbclass | 35 total_count = sstate_count + no_sstate_count 37 t, round(100 * sstate_count / total_count, 1), sstate_count, no_sstate_count))
|
| /OK3568_Linux_fs/external/mpp/utils/ |
| H A D | utils.c | 1436 RK_S64 total_count; member 1477 RK_S64 total_count = 0; in fps_calc_inc() local 1487 if (!impl->total_count) { in fps_calc_inc() 1496 total_count = impl->total_count; in fps_calc_inc() 1498 last_count = impl->total_count - impl->last_count; in fps_calc_inc() 1501 impl->last_count = impl->total_count; in fps_calc_inc() 1505 impl->total_count++; in fps_calc_inc() 1510 impl->callback(total_time, total_count, last_time, last_count); in fps_calc_inc()
|
| H A D | mpi_dec_utils.h | 87 void show_dec_fps(RK_S64 total_time, RK_S64 total_count, RK_S64 last_time, RK_S64 last_count);
|
| H A D | mpi_dec_utils.c | 430 void show_dec_fps(RK_S64 total_time, RK_S64 total_count, RK_S64 last_time, RK_S64 last_count) in show_dec_fps() argument 432 float avg_fps = (float)total_count * 1000000 / total_time; in show_dec_fps() 436 total_count, avg_fps, ins_fps); in show_dec_fps()
|
| H A D | utils.h | 88 typedef void (*FpsCalcCb)(RK_S64 total_time, RK_S64 total_count, RK_S64 last_time, RK_S64 last_coun…
|
| H A D | mpi_enc_utils.c | 547 void show_enc_fps(RK_S64 total_time, RK_S64 total_count, RK_S64 last_time, RK_S64 last_count) in show_enc_fps() argument 549 float avg_fps = (float)total_count * 1000000 / total_time; in show_enc_fps() 553 total_count, avg_fps, ins_fps); in show_enc_fps()
|
| /OK3568_Linux_fs/kernel/fs/xfs/ |
| H A D | xfs_trans_dquot.c | 589 xfs_qcnt_t total_count = res->reserved + delta; in xfs_dqresv_check() local 604 if (hardlimit && total_count > hardlimit) { in xfs_dqresv_check() 609 if (softlimit && total_count > softlimit) { in xfs_dqresv_check()
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | devfreq-event.h | 49 unsigned long total_count; member
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | kvm-stat.h | 95 u64 total_count; member
|
| /OK3568_Linux_fs/kernel/fs/f2fs/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/fs/orangefs/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/drivers/memory/samsung/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/net/batman-adv/ |
| H A 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()
|
| H A 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()
|
| /OK3568_Linux_fs/kernel/tools/perf/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/pasemi/ |
| H A 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()
|