Symbol: stop_timing
test/sysperf/blib.h
22
int stop_timing(long long count, const char *ctl, ...);
test/sysperf/call1.c
22
stop_timing(LOOP, "loop1/user");
test/sysperf/call2.c
26
stop_timing(LOOP, "loop1/user");
test/sysperf/call3.c
31
stop_timing(LOOP * 2, "call3/nop1-1");
test/sysperf/call3.c
37
stop_timing(LOOP * 2, "call3/nop1-2");
test/sysperf/call3.c
43
stop_timing(LOOP * 2, "call3/nop2-2");
test/sysperf/cld1.c
23
while (stop_timing(0, NULL) == 0) {
test/sysperf/cld1.c
34
stop_timing(count, "dummy() - without cld");
test/sysperf/cld1.c
41
stop_timing(count, "dummy() - with cld");
test/sysperf/cmp.c
36
stop_timing(LOOP, "loop1/cmp-pointer");
test/sysperf/cmp.c
43
stop_timing(LOOP, "loop2/cmp-pointer");
test/sysperf/cmp.c
50
stop_timing(LOOP, "loop3/cmp-bitmask");
test/sysperf/exec1.c
66
while (stop_timing(0, NULL) == 0) {
test/sysperf/exec1.c
79
stop_timing(0, NULL);
test/sysperf/exec1.c
88
stop_timing(*countr, "execl static program:");
test/sysperf/exec1.c
90
stop_timing(*countr, "execl dynamic program:");
test/sysperf/fork1.c
22
stop_timing(j, "fork/exit/wait:");
test/sysperf/lockmgr1.c
27
while (stop_timing(0, NULL) == 0) {
test/sysperf/lockmgr1.c
50
stop_timing(max * n, "varsym1");
test/sysperf/lockmgr2.c
32
while (stop_timing(0, NULL) == 0) {
test/sysperf/lockmgr2.c
63
stop_timing(max * n, "lockmgr2");
test/sysperf/lockmgr3.c
33
while (stop_timing(0, NULL) == 0) {
test/sysperf/lockmgr3.c
65
stop_timing(max * n * 4, "lockmgr3");
test/sysperf/loop1.c
21
stop_timing(LOOP, "loop1/user");
test/sysperf/loop2.c
42
stop_timing(LOOP, "loop2/2xfork");
test/sysperf/loop4.c
34
while (stop_timing(0, NULL) == 0) {
test/sysperf/loop4.c
50
stop_timing(count * INNER, "loop2/2xfork");
test/sysperf/mbwtest.c
165
us = stop_timing(msg, (long long)bytes * loops);
test/sysperf/mbwtest.c
24
static int stop_timing(char *str, long long bytes);
test/sysperf/memcpy.c
86
for (i = 0; (i & 31) || stop_timing(0, NULL) == 0; ++i) {
test/sysperf/memcpy.c
98
stop_timing(loops, ctl);
test/sysperf/memzero.c
85
for (i = 0; (i & 31) || stop_timing(0, NULL) == 0; ++i) {
test/sysperf/memzero.c
97
stop_timing(loops, ctl);
test/sysperf/mutex1.c
27
while (stop_timing(0, NULL) == 0) {
test/sysperf/mutex1.c
49
stop_timing(count, "simple_mtx(uncontested/1cpu)");
test/sysperf/mutex1.c
70
stop_timing(count, "simple_mtx");
test/sysperf/mutex2.c
27
while (stop_timing(0, NULL) == 0) {
test/sysperf/mutex2.c
45
stop_timing(count, "complex_mtx(uncontested/1cpu)");
test/sysperf/mutex2.c
64
stop_timing(count, "complex_mtx");
test/sysperf/mutex3.c
105
stop_timing(count, "complex_mtx");
test/sysperf/mutex3.c
66
while (stop_timing(0, NULL) == 0) {
test/sysperf/mutex3.c
85
stop_timing(count, "complex_mtx(uncontested/1cpu)");
test/sysperf/mutex4.c
59
while (stop_timing(0, NULL) == 0) {
test/sysperf/mutex4.c
76
stop_timing(count, "complex_mtx(uncontested/1cpu)");
test/sysperf/mutex4.c
97
stop_timing(count, "complex_mtx");
test/sysperf/pipe1.c
50
if ((j & 31) == 0 && stop_timing(0, NULL))
test/sysperf/pipe1.c
63
stop_timing(j, "full duplex pipe / 1char:");
test/sysperf/pipe2.c
104
if ((j & 31) == 0 && stop_timing(0, NULL))
test/sysperf/pipe2.c
121
stop_timing(loops, "full duplex pipe / %dK bufs:", bytes / 1024);
test/sysperf/quicksw1.c
47
stop_timing(count, "uthread_switch");
test/sysperf/read1.c
75
while (stop_timing(0, NULL) == 0) {
test/sysperf/read1.c
88
stop_timing(j, "read 1char from file:");
test/sysperf/socketpair.c
104
if ((j & 31) == 0 && stop_timing(0, NULL))
test/sysperf/socketpair.c
120
stop_timing(loops, "full duplex socketpair / %dK bufs:", bytes / 1024);
test/sysperf/syscall1.c
24
while (stop_timing(0, NULL) == 0) {
test/sysperf/syscall1.c
48
stop_timing(count * n, "getuid()");
test/sysperf/syscall2.c
52
while (stop_timing(0, NULL) == 0) {
test/sysperf/syscall2.c
68
while (stop_timing(0, NULL) == 0) {
test/sysperf/syscall2.c
81
stop_timing(count, "getuid() sysmsg");
test/sysperf/syscall4.c
25
while (stop_timing(0, NULL) == 0) {
test/sysperf/syscall4.c
36
stop_timing(count, "stat()");
test/sysperf/syscall5.c
20
while (stop_timing(0, NULL) == 0) {
test/sysperf/syscall5.c
31
stop_timing(count, "getuid()");
test/sysperf/syscall6.c
20
while (stop_timing(0, NULL) == 0) {
test/sysperf/syscall6.c
31
stop_timing(count, "gettimeofday()");
test/sysperf/syscall7.c
20
while (stop_timing(0, NULL) == 0) {
test/sysperf/syscall7.c
31
stop_timing(count, "getuid()");
test/sysperf/umtx1.c
38
stop_timing(total, "total");
test/sysperf/umtx1.c
86
stop_timing(j, "mtx1");