Home
last modified time | relevance | path

Searched refs:times (Results 1 – 25 of 54) sorted by relevance

123

/tools/power/cpupower/bench/
A DREADME-BENCH34 You can specify load (100% CPU load) and sleep (0% CPU load) times in us which
42 repeated 20 times.
48 Will increase load and sleep time by 25ms 5 times.
50 25ms load/sleep time repeated 20 times (cycles).
51 50ms load/sleep time repeated 20 times (cycles).
53 100ms load/sleep time repeated 20 times (cycles).
79 In round 2, if the ondemand sampling times exactly match the load/sleep
96 You can easily test all kind of load/sleep times and check whether your
/tools/testing/selftests/bpf/benchs/
A Dbench_bpf_hashmap_lookup.c208 static int compute_events(u64 *times, double *events_mean, double *events_stddev, u64 *mean_time) in compute_events() argument
217 if (!times[i]) in compute_events()
219 *mean_time += times[i]; in compute_events()
220 *events_mean += events_from_time(times[i]); in compute_events()
231 double events_i = *events_mean - events_from_time(times[i]); in compute_events()
/tools/perf/scripts/python/
A Dstat-cpi.py6 times = [] variable
14 if (time not in times):
15 times.append(time)
/tools/testing/selftests/bpf/
A Dxdping.h12 __u64 times[XDPING_MAX_COUNT]; member
A Dxdping.c53 if (pinginfo.times[i] == 0) in get_stats()
60 (double)pinginfo.times[i]/1000000); in get_stats()
/tools/testing/selftests/firmware/
A Dsettings3 # present, each with 2 "nowait" functions tested 5 times. Expected time for a
/tools/testing/selftests/bpf/progs/
A Dxdping_kern.c122 if (pinginfo->times[i] == 0) in xdping_client()
127 pinginfo->times[i] = recvtime - in xdping_client()
/tools/testing/selftests/net/packetdrill/
A Dtcp_rcv_big_endseq.pkt43 // Check LINUX_MIB_BEYOND_WINDOW has been incremented 3 times.
A Dtcp_user_timeout_user-timeout-probe.pkt29 // we retry 6 times before hitting 3s timeout.
/tools/perf/Documentation/
A Dperf-sched.txt37 Count(number of times a delay was calculated) and delay(time that a
51 it a number of times, measuring its performance.)
174 run times (in sec) and relative stddev.
179 max, and average run times (in sec) and relative stddev.
237 repeat the workload n times (0: infinite). Default is 10.
A Dperf-bench.txt21 Specify number of times to repeat the run (default 10).
193 Repeat memcpy invocation this number of times.
217 Repeat memset invocation this number of times.
A Dperf-daemon.txt183 [ perf record: dump data: Woken up 1 times ]
194 [ perf record: dump data: Woken up 1 times ]
197 [ perf record: dump data: Woken up 1 times ]
A Dperf-timechart.txt19 and CPU events (task switches, running times, CPU power states, etc),
103 [ perf record: Woken up 13 times to write data ]
A Dperf-test.txt45 Run each test the given number of times, by default once. This
A Dperf.data-directory-format.txt36 [ perf record: Woken up 1 times to write data ]
A Dperf-trace.txt141 Show only a summary of syscalls by thread with min, max, and average times
147 average times (in msec) and relative stddev.
159 Show tool stats such as number of times fd->pathname was discovered thru
182 times the maximum for non-root users, based on the kernel.perf_event_mlock_kb
A Dcpu-and-latency-overheads.txt8 Perf can measure overhead for both of these times (shown in 'overhead' and
A Dperf-stat.txt131 print more detailed statistics, can be specified up to 3 times
280 --interval-count times::
281 Print count deltas for fixed number of times.
510 Set how retirement latency events have their sample times
513 times respectively. "last" uses the last retirment latency sample's
610 Those times are the very same as displayed by the 'time' tool.
/tools/perf/util/
A Devlist.c2295 struct event_enable_time *times; member
2341 eet->times = calloc(times_cnt, sizeof(*eet->times)); in evlist__parse_event_enable_time()
2342 if (!eet->times) { in evlist__parse_event_enable_time()
2347 if (parse_event_enable_times(str, eet->times) != times_cnt) { in evlist__parse_event_enable_time()
2369 opts->target.initial_delay = eet->times[0].start; in evlist__parse_event_enable_time()
2376 zfree(&eet->times); in evlist__parse_event_enable_time()
2404 ms = eet->times[0].end - eet->times[0].start; in event_enable_timer__start()
2443 int *times = (int *)eet->times; /* Accessing 'times' as array of int */ in event_enable_timer__process() local
2444 int ms = times[step] - times[step - 1]; in event_enable_timer__process()
2458 zfree(&(*ep)->times); in event_enable_timer__exit()
A Dstat.h99 int times; member
/tools/testing/selftests/tc-testing/
A DTODO.txt19 be run in the various predefined times. Then if a plugin does not
/tools/testing/selftests/cgroup/
A Dtest_kmem.c131 void *arg, int times) in cg_run_in_subcgroups() argument
136 for (i = 0; i < times; i++) { in cg_run_in_subcgroups()
/tools/testing/selftests/uevent/
A Duevent_filtering.c195 int trigger_uevent(unsigned int times) in trigger_uevent() argument
208 for (i = 0; i < times; i++) { in trigger_uevent()
/tools/perf/
A Dbuiltin-stat.c442 static bool handle_interval(unsigned int interval, int *times) in handle_interval() argument
446 if (interval_count && !(--(*times))) in handle_interval()
571 static int dispatch_events(bool forks, int timeout, int interval, int *times) in dispatch_events() argument
597 if (timeout || handle_interval(interval, times)) in dispatch_events()
688 int times = stat_config.times; in __run_perf_stat() local
898 status = dispatch_events(forks, timeout, interval, &times); in __run_perf_stat()
915 status = dispatch_events(forks, timeout, interval, &times); in __run_perf_stat()
2425 OPT_INTEGER(0, "interval-count", &stat_config.times, in cmd_stat()
2797 if (stat_config.times && interval) in cmd_stat()
2799 else if (stat_config.times && !interval) { in cmd_stat()
/tools/perf/tests/
A DBuild44 perf-test-y += event-times.o

Completed in 35 milliseconds

123