Lines Matching refs:cnt
22 static void do_simple_thread_func(int cnt, const char *fmt, ...) in do_simple_thread_func() argument
27 int len = cnt % 5; in do_simple_thread_func()
40 trace_foo_bar("hello", cnt, array, random_strings[len], in do_simple_thread_func()
45 trace_foo_with_template_simple("HELLO", cnt); in do_simple_thread_func()
47 trace_foo_bar_with_cond("Some times print", cnt); in do_simple_thread_func()
49 trace_foo_with_template_cond("prints other times", cnt); in do_simple_thread_func()
51 trace_foo_with_template_print("I have to be different", cnt); in do_simple_thread_func()
53 trace_foo_rel_loc("Hello __rel_loc", cnt, bitmask); in do_simple_thread_func()
56 static void simple_thread_func(int cnt) in simple_thread_func() argument
58 do_simple_thread_func(cnt, "iter=%d", cnt); in simple_thread_func()
63 int cnt = 0; in simple_thread() local
66 simple_thread_func(cnt++); in simple_thread()
74 static void simple_thread_func_fn(int cnt) in simple_thread_func_fn() argument
80 trace_foo_bar_with_fn("Look at me", cnt); in simple_thread_func_fn()
81 trace_foo_with_template_fn("Look at me too", cnt); in simple_thread_func_fn()
86 int cnt = 0; in simple_thread_fn() local
89 simple_thread_func_fn(cnt++); in simple_thread_fn()