Home
last modified time | relevance | path

Searched refs:runtime_us (Results 1 – 10 of 10) sorted by relevance

/linux/tools/perf/bench/
H A Dfind-bit-bench.c59 u64 runtime_us; in do_for_each_set_bit() local
87 runtime_us = diff.tv_sec * USEC_PER_SEC + diff.tv_usec; in do_for_each_set_bit()
88 update_stats(&fb_time_stats, runtime_us); in do_for_each_set_bit()
103 runtime_us = diff.tv_sec * USEC_PER_SEC + diff.tv_usec; in do_for_each_set_bit()
104 update_stats(&tb_time_stats, runtime_us); in do_for_each_set_bit()
H A Dsynthesize.c68 u64 runtime_us; in do_run_single_threaded() local
91 runtime_us = diff.tv_sec * USEC_PER_SEC + diff.tv_usec; in do_run_single_threaded()
92 update_stats(&time_stats, runtime_us); in do_run_single_threaded()
160 u64 runtime_us; in do_run_multi_threaded() local
193 runtime_us = diff.tv_sec * USEC_PER_SEC + diff.tv_usec; in do_run_multi_threaded()
194 update_stats(&time_stats, runtime_us); in do_run_multi_threaded()
H A Dkallsyms-parse.c38 u64 runtime_us; in do_kallsyms_parse() local
55 runtime_us = diff.tv_sec * USEC_PER_SEC + diff.tv_usec; in do_kallsyms_parse()
56 update_stats(&time_stats, runtime_us); in do_kallsyms_parse()
H A Devlist-open-close.c140 u64 runtime_us; in bench_evlist_open_close__run() local
172 runtime_us = timeval2usec(&diff); in bench_evlist_open_close__run()
173 update_stats(&time_stats, runtime_us); in bench_evlist_open_close__run()
176 pr_debug("Iteration %d took:\t%" PRIu64 "us\n", i, runtime_us); in bench_evlist_open_close__run()
H A Dpmu-scan.c134 u64 runtime_us; in run_pmu_scan() local
157 runtime_us = diff.tv_sec * USEC_PER_SEC + diff.tv_usec; in run_pmu_scan()
158 update_stats(&stats, runtime_us); in run_pmu_scan()
H A Dinject-buildid.c413 u64 runtime_us, max_rss; in do_inject_loop()
430 runtime_us = diff.tv_sec * USEC_PER_SEC + diff.tv_usec; in do_inject_loop()
431 update_stats(&time_stats, runtime_us); in do_inject_loop()
410 u64 runtime_us, max_rss; do_inject_loop() local
/linux/tools/tracing/rtla/src/
H A Dosnoise.c170 * osnoise_get_runtime - return the original "osnoise/runtime_us" value
176 long long runtime_us; in osnoise_get_runtime()
178 if (context->runtime_us != OSNOISE_TIME_INIT_VAL) in osnoise_get_runtime()
179 return context->runtime_us; in osnoise_get_runtime()
184 runtime_us = osnoise_read_ll_config("osnoise/runtime_us"); in osnoise_get_runtime()
185 if (runtime_us < 0) in osnoise_get_runtime()
188 context->orig_runtime_us = runtime_us; in osnoise_get_runtime()
189 return runtime_us; in osnoise_get_runtime()
229 retval = osnoise_write_ll_config("osnoise/runtime_us", runtim in __osnoise_write_runtime()
174 long long runtime_us; osnoise_get_runtime() local
[all...]
H A Dcommon.h21 unsigned long long runtime_us; member
/linux/tools/tracing/rtla/tests/
H A Dengine.sh36 echo 1000000 > runtime_us
/linux/Documentation/trace/
H A Dosnoise-tracer.rst102 - osnoise/runtime_us: how long an osnoise thread will look for noise.