Lines Matching refs:cnt
21 static void simple_thread_func(int cnt) in simple_thread_func() argument
24 int len = cnt % 5; in simple_thread_func()
35 trace_foo_bar("hello", cnt, array, random_strings[len], in simple_thread_func()
38 trace_foo_with_template_simple("HELLO", cnt); in simple_thread_func()
40 trace_foo_bar_with_cond("Some times print", cnt); in simple_thread_func()
42 trace_foo_with_template_cond("prints other times", cnt); in simple_thread_func()
44 trace_foo_with_template_print("I have to be different", cnt); in simple_thread_func()
49 int cnt = 0; in simple_thread() local
52 simple_thread_func(cnt++); in simple_thread()
60 static void simple_thread_func_fn(int cnt) in simple_thread_func_fn() argument
66 trace_foo_bar_with_fn("Look at me", cnt); in simple_thread_func_fn()
67 trace_foo_with_template_fn("Look at me too", cnt); in simple_thread_func_fn()
72 int cnt = 0; in simple_thread_fn() local
75 simple_thread_func_fn(cnt++); in simple_thread_fn()