Lines Matching full:cnt
22 static void simple_thread_func(int cnt) in simple_thread_func() argument
25 int len = cnt % 5; in simple_thread_func()
36 trace_foo_bar("hello", cnt, array, random_strings[len], in simple_thread_func()
39 trace_foo_with_template_simple("HELLO", cnt); in simple_thread_func()
41 trace_foo_bar_with_cond("Some times print", cnt); in simple_thread_func()
43 trace_foo_with_template_cond("prints other times", cnt); in simple_thread_func()
45 trace_foo_with_template_print("I have to be different", cnt); in simple_thread_func()
50 int cnt = 0; in simple_thread() local
53 simple_thread_func(cnt++); in simple_thread()
61 static void simple_thread_func_fn(int cnt) in simple_thread_func_fn() argument
67 trace_foo_bar_with_fn("Look at me", cnt); in simple_thread_func_fn()
68 trace_foo_with_template_fn("Look at me too", cnt); in simple_thread_func_fn()
73 int cnt = 0; in simple_thread_fn() local
76 simple_thread_func_fn(cnt++); in simple_thread_fn()