| /tools/power/cpupower/bench/ |
| A D | README-BENCH | 34 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 D | bench_bpf_hashmap_lookup.c | 208 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 D | stat-cpi.py | 6 times = [] variable 14 if (time not in times): 15 times.append(time)
|
| /tools/testing/selftests/bpf/ |
| A D | xdping.h | 12 __u64 times[XDPING_MAX_COUNT]; member
|
| A D | xdping.c | 53 if (pinginfo.times[i] == 0) in get_stats() 60 (double)pinginfo.times[i]/1000000); in get_stats()
|
| /tools/testing/selftests/firmware/ |
| A D | settings | 3 # present, each with 2 "nowait" functions tested 5 times. Expected time for a
|
| /tools/testing/selftests/bpf/progs/ |
| A D | xdping_kern.c | 122 if (pinginfo->times[i] == 0) in xdping_client() 127 pinginfo->times[i] = recvtime - in xdping_client()
|
| /tools/testing/selftests/net/packetdrill/ |
| A D | tcp_rcv_big_endseq.pkt | 43 // Check LINUX_MIB_BEYOND_WINDOW has been incremented 3 times.
|
| A D | tcp_user_timeout_user-timeout-probe.pkt | 29 // we retry 6 times before hitting 3s timeout.
|
| /tools/perf/Documentation/ |
| A D | perf-sched.txt | 37 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 D | perf-bench.txt | 21 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 D | perf-daemon.txt | 183 [ 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 D | perf-timechart.txt | 19 and CPU events (task switches, running times, CPU power states, etc), 103 [ perf record: Woken up 13 times to write data ]
|
| A D | perf-test.txt | 45 Run each test the given number of times, by default once. This
|
| A D | perf.data-directory-format.txt | 36 [ perf record: Woken up 1 times to write data ]
|
| A D | perf-trace.txt | 141 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 D | cpu-and-latency-overheads.txt | 8 Perf can measure overhead for both of these times (shown in 'overhead' and
|
| A D | perf-stat.txt | 131 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 D | evlist.c | 2295 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 D | stat.h | 99 int times; member
|
| /tools/testing/selftests/tc-testing/ |
| A D | TODO.txt | 19 be run in the various predefined times. Then if a plugin does not
|
| /tools/testing/selftests/cgroup/ |
| A D | test_kmem.c | 131 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 D | uevent_filtering.c | 195 int trigger_uevent(unsigned int times) in trigger_uevent() argument 208 for (i = 0; i < times; i++) { in trigger_uevent()
|
| /tools/perf/ |
| A D | builtin-stat.c | 442 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, ×); in __run_perf_stat() 915 status = dispatch_events(forks, timeout, interval, ×); 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 D | Build | 44 perf-test-y += event-times.o
|