| /tools/verification/models/ |
| A D | wwnr.dot | 5 {node [shape = plaintext] "running"}; 9 "not_running" -> "running" [ label = "switch_in" ]; 10 "running" [label = "running"]; 11 "running" -> "not_running" [ label = "switch_out" ];
|
| /tools/testing/selftests/powerpc/math/ |
| A D | fpu_preempt.c | 36 int running; variable 38 extern int preempt_fpu(double *darray, int *threads_starting, int *running); 46 rc = preempt_fpu(darray, &threads_starting, &running); in preempt_fpu_c() 60 running = true; in test_preempt_fpu() 83 running = 0; in test_preempt_fpu()
|
| A D | vmx_preempt.c | 38 int running; variable 40 extern int preempt_vmx(vector int *varray, int *threads_starting, int *running); 52 rc = preempt_vmx(varray, &threads_starting, &running); in preempt_vmx_c() 69 running = true; in test_preempt_vmx() 92 running = 0; in test_preempt_vmx()
|
| A D | fpu_signal.c | 35 int running; variable 37 extern long preempt_fpu(double *darray, int *threads_starting, int *running); 66 rc = preempt_fpu(darray, &threads_starting, &running); in signal_fpu_c() 81 running = true; in test_signal_fpu() 104 running = 0; in test_signal_fpu()
|
| A D | vsx_preempt.c | 44 int running; variable 46 extern long preempt_vsx(vector int *varray, int *threads_starting, int *running); 84 rc = preempt_vsx(varray, &threads_starting, &running); in preempt_vsx_c() 101 running = true; in test_preempt_vsx() 124 running = 0; in test_preempt_vsx()
|
| A D | vmx_signal.c | 38 int running; variable 88 rc = preempt_vmx(varray, &threads_starting, &running); in signal_vmx_c() 106 running = true; in test_signal_vmx() 132 running = 0; in test_signal_vmx()
|
| A D | vsx_asm.S | 24 # int *running); 27 # validity of the VMX registers while running is not zero. 32 std r5,STACK_FRAME_PARAM(2)(sp) # int *running
|
| /tools/perf/util/bpf_skel/ |
| A D | bpf_prog_profiler.bpf.c | 65 diff.running = after->running - before->running; in fexit_update_maps() 71 accum->running += diff.running; in fexit_update_maps()
|
| A D | bperf_cgroup.bpf.c | 170 val.counter = val.enabled = val.running = 0; in bperf_cgroup_count() 187 delta.running = val.running - prev_val->running; in bperf_cgroup_count() 201 cgrp_val->running += delta.running; in bperf_cgroup_count()
|
| A D | bperf_leader.bpf.c | 50 diff_val->running = val.running - prev_val->running; in BPF_PROG()
|
| A D | bperf_follower.bpf.c | 91 accum_val->running += diff_val->running; in BPF_PROG()
|
| /tools/bpf/bpftool/skeleton/ |
| A D | profiler.bpf.c | 10 __u64 running; member 88 diff.running = after->running - before->running; in fexit_update_maps() 94 accum->running += diff.running; in fexit_update_maps()
|
| /tools/perf/Documentation/ |
| A D | perf-buildid-list.txt | 19 It can also be used to show the build id of the running kernel or in an ELF 35 Show running kernel build id. 38 Show buildid, start/end text address, and path of running kernel and
|
| A D | perf-kallsyms.txt | 6 perf-kallsyms - Searches running kernel for symbols 15 This command searches the running kernel kallsyms file for the given symbol(s)
|
| A D | cpu-and-latency-overheads.txt | 4 For a single-threaded program, or a program running on a single-core machine, 6 running on a multi-core machine, these notions are significantly different. 22 running time of the program looking at the (wrong in this case) CPU overhead, 23 we would concentrate on the function 'bar', but it can yield only 10% running 83 (number of threads actively running on CPUs), you may use '--parallelism'
|
| /tools/testing/selftests/powerpc/security/ |
| A D | spectre_v2.c | 43 FAIL_IF(events[0].result.running != events[0].result.enabled); in do_count_loop() 44 FAIL_IF(events[1].result.running != events[1].result.enabled); in do_count_loop() 52 FAIL_IF(events[2].result.running != events[2].result.enabled); in do_count_loop() 53 FAIL_IF(events[3].result.running != events[3].result.enabled); in do_count_loop()
|
| /tools/testing/selftests/powerpc/pmu/ |
| A D | event.c | 138 if (e->result.running == e->result.enabled) in event_report_justified() 139 printf("running/enabled %llu\n", e->result.running); in event_report_justified() 141 printf("running %llu enabled %llu\n", e->result.running, in event_report_justified()
|
| A D | l3_bank_test.c | 39 FAIL_IF(event.result.running == 0); in l3_bank_test()
|
| /tools/testing/selftests/resctrl/ |
| A D | settings | 1 # If running time is longer than 120 seconds when new tests are added in
|
| /tools/perf/tests/shell/base_report/ |
| A D | stderr-whitelist.txt | 2 was updated .*is prelink enabled.+ Restart the long running apps that use it
|
| /tools/testing/selftests/tc-testing/ |
| A D | TODO.txt | 4 present, prevent the related categories from running. 29 to automate running multiple "test suites" with different requirements
|
| /tools/testing/selftests/net/rds/ |
| A D | run.sh | 194 echo running RDS tests... 211 echo running gcovr...
|
| /tools/testing/selftests/drivers/net/ |
| A D | README.rst | 23 The netdevice against which tests will be run must exist, be running 26 Refer to list of :ref:`Variables` later in this file to set up running 32 All tests in drivers/net must support running both against a software device 103 On the target machine, running the tests will use netdevsim by default::
|
| /tools/testing/selftests/kvm/lib/ |
| A D | memstress.c | 29 bool running; member 270 WRITE_ONCE(vcpu->running, true); in vcpu_thread_main() 299 WRITE_ONCE(vcpu->running, false); in memstress_start_vcpu_threads() 305 while (!READ_ONCE(vcpu_threads[i].running)) in memstress_start_vcpu_threads()
|
| /tools/perf/tests/ |
| A D | builtin-test.c | 353 int result, int width, int running) in print_test_result() argument 365 color_fprintf(stderr, PERF_COLOR_YELLOW, " Running (%d active)\n", running); in print_test_result() 434 int running = 0; in finish_test() local 440 running++; in finish_test() 442 if (running != last_running) { in finish_test() 451 width, running); in finish_test() 452 last_running = running; in finish_test()
|