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