Home
last modified time | relevance | path

Searched refs:total_time (Results 1 – 25 of 38) sorted by relevance

12

/linux-6.3-rc2/include/trace/events/
A Ddevfreq.h22 __field(unsigned long, total_time)
30 __entry->total_time = devfreq->last_status.total_time;
35 __entry->total_time == 0 ? 0 :
36 (100 * __entry->busy_time) / __entry->total_time)
47 __field(unsigned long, total_time)
55 __entry->total_time = devfreq->last_status.total_time;
62 __entry->total_time == 0 ? 0 :
63 (100 * __entry->busy_time) / __entry->total_time)
A Dthermal.h152 __field(u32, total_time)
160 __entry->total_time = status->total_time;
166 __entry->total_time == 0 ? 0 :
167 (100 * __entry->busy_time) / __entry->total_time,
/linux-6.3-rc2/drivers/devfreq/
A Dgovernor_simpleondemand.c45 if (stat->total_time == 0) { in devfreq_simple_ondemand_func()
51 if (stat->busy_time >= (1 << 24) || stat->total_time >= (1 << 24)) { in devfreq_simple_ondemand_func()
53 stat->total_time >>= 7; in devfreq_simple_ondemand_func()
58 stat->total_time * dfso_upthreshold) { in devfreq_simple_ondemand_func()
71 stat->total_time * (dfso_upthreshold - dfso_downdifferential)) { in devfreq_simple_ondemand_func()
79 b = div_u64(a, stat->total_time); in devfreq_simple_ondemand_func()
A Dexynos-bus.c131 stat->total_time = stat->busy_time = 0; in exynos_bus_get_dev_status()
136 stat->total_time = edata.total_count; in exynos_bus_get_dev_status()
139 stat->total_time); in exynos_bus_get_dev_status()
A Dsun8i-a33-mbus.c247 stat->total_time = priv->nominal_bw; in sun8i_a33_mbus_get_dram_status()
253 stat->busy_time, stat->total_time, in sun8i_a33_mbus_get_dram_status()
254 DIV_ROUND_CLOSEST(stat->busy_time * 100, stat->total_time), in sun8i_a33_mbus_get_dram_status()
/linux-6.3-rc2/tools/power/cpupower/bench/
A Dbenchmark.c16 #define show_progress(total_time, progress_time) \ argument
19 (progress_time * 100) / total_time); \
85 unsigned long total_time = 0, progress_time = 0; in start_benchmark() local
92 total_time += _round * (config->sleep + config->load); in start_benchmark()
93 total_time *= 2; /* powersave and performance cycles */ in start_benchmark()
99 show_progress(total_time, progress_time); in start_benchmark()
142 show_progress(total_time, progress_time); in start_benchmark()
/linux-6.3-rc2/tools/laptop/dslm/
A Ddslm.c77 time_t total_time = 0; in measure() local
109 total_time = time(0) - start_time; in measure()
113 tmp = (float)sleep_time / (float)total_time * 100; in measure()
115 tmp = (float)active_time / (float)total_time * 100; in measure()
117 tmp = (float)unknown_time / (float)total_time * 100; in measure()
/linux-6.3-rc2/drivers/base/power/
A Dwakeup_stats.c54 ktime_t total_time = ws->total_time; in total_time_ms_show() local
58 total_time = ktime_add(total_time, active_time); in total_time_ms_show()
61 return sysfs_emit(buf, "%lld\n", ktime_to_ms(total_time)); in total_time_ms_show()
A Dwakeup.c126 deleted_ws.total_time = in wakeup_source_record()
127 ktime_add(deleted_ws.total_time, ws->total_time); in wakeup_source_record()
693 ws->total_time = ktime_add(ws->total_time, duration); in wakeup_source_deactivate()
1060 ktime_t total_time; in print_wakeup_source_stats() local
1068 total_time = ws->total_time; in print_wakeup_source_stats()
1076 total_time = ktime_add(total_time, active_time); in print_wakeup_source_stats()
1090 ktime_to_ms(active_time), ktime_to_ms(total_time), in print_wakeup_source_stats()
/linux-6.3-rc2/drivers/powercap/
A Ddtpm_devfreq.c78 if (status->total_time > 0xfffff) { in _normalize_load()
79 status->total_time >>= 10; in _normalize_load()
84 status->busy_time /= status->total_time ? : 1; in _normalize_load()
87 status->total_time = 1024; in _normalize_load()
/linux-6.3-rc2/drivers/gpu/drm/lima/
A Dlima_devfreq.c67 status->total_time = ktime_to_ns(ktime_add(devfreq->busy_time, in lima_devfreq_get_dev_status()
76 status->busy_time, status->total_time, in lima_devfreq_get_dev_status()
77 status->busy_time / (status->total_time / 100), in lima_devfreq_get_dev_status()
/linux-6.3-rc2/drivers/gpu/drm/panfrost/
A Dpanfrost_devfreq.c61 status->total_time = ktime_to_ns(ktime_add(pfdevfreq->busy_time, in panfrost_devfreq_get_dev_status()
71 status->busy_time, status->total_time, in panfrost_devfreq_get_dev_status()
72 status->busy_time / (status->total_time / 100), in panfrost_devfreq_get_dev_status()
/linux-6.3-rc2/drivers/thermal/
A Ddevfreq_cooling.c166 if (status->total_time > 0xfffff) { in _normalize_load()
167 status->total_time >>= 10; in _normalize_load()
172 status->busy_time /= status->total_time ? : 1; in _normalize_load()
175 status->total_time = 1024; in _normalize_load()
/linux-6.3-rc2/drivers/net/ethernet/microchip/lan966x/
A Dlan966x_taprio.c221 u64 total_time = 0; in lan966x_taprio_check() local
252 total_time += qopt->entries[i].interval; in lan966x_taprio_check()
256 if (total_time > LAN966X_TAPRIO_MAX_CYCLE_TIME_NS) in lan966x_taprio_check()
262 if (qopt->cycle_time < total_time) in lan966x_taprio_check()
/linux-6.3-rc2/tools/perf/util/
A Dbpf_kwork.c38 u64 total_time; member
291 work->total_runtime = data->total_time; in add_work()
297 work->total_latency = data->total_time; in add_work()
A Dbpf_lock_contention.c292 st->wait_time_total += data.total_time; in lock_contention_read()
310 st->wait_time_total = data.total_time; in lock_contention_read()
315 st->avg_wait_time = data.total_time / data.count; in lock_contention_read()
/linux-6.3-rc2/tools/perf/util/bpf_skel/
A Dlock_data.h19 u64 total_time; member
A Dlock_contention.bpf.c310 .total_time = duration, in contention_end()
322 __sync_fetch_and_add(&data->total_time, duration); in contention_end()
A Dkwork_trace.bpf.c29 __u64 total_time; member
141 data->total_time += delta; in do_update_time()
/linux-6.3-rc2/sound/soc/sprd/
A Dsprd-pcm-dma.h19 int total_time; member
/linux-6.3-rc2/tools/power/cpupower/lib/
A Dcpufreq.c708 unsigned long long *total_time) in cpufreq_get_stats() argument
722 *total_time = 0; in cpufreq_get_stats()
751 *total_time = *total_time + current->time_in_state; in cpufreq_get_stats()
A Dcpufreq.h170 unsigned long long *total_time);
/linux-6.3-rc2/tools/power/cpupower/utils/
A Dcpufreq-info.c401 unsigned long long total_time; in get_freq_stats() local
402 struct cpufreq_stats *stats = cpufreq_get_stats(cpu, &total_time); in get_freq_stats()
407 (100.0 * stats->time_in_state) / total_time); in get_freq_stats()
/linux-6.3-rc2/tools/perf/
A Dbuiltin-timechart.c100 u64 total_time; member
114 u64 total_time; member
306 c->total_time += (end-start); in pid_put_sample()
307 p->total_time += (end-start); in pid_put_sample()
1294 if (c->total_time > 5000000000) /* 5 seconds */ in draw_process_bars()
1295 sprintf(comm, "%s:%i (%2.2fs)", c->comm, p->pid, c->total_time / (double)NSEC_PER_SEC); in draw_process_bars()
1297 sprintf(comm, "%s:%i (%3.1fms)", c->comm, p->pid, c->total_time / (double)NSEC_PER_MSEC); in draw_process_bars()
1396 if (p->total_time >= threshold) in determine_display_tasks()
1407 if (c->total_time >= threshold) { in determine_display_tasks()
/linux-6.3-rc2/lib/
A Dtest_rhashtable.c685 u64 total_time = 0; in test_rht_init() local
727 total_time += time; in test_rht_init()
735 do_div(total_time, runs); in test_rht_init()
736 pr_info("Average test time: %llu\n", total_time); in test_rht_init()

Completed in 38 milliseconds

12