Lines Matching refs:thread_input
21 static void thread_0_entry(ULONG thread_input);
22 static void thread_1_entry(ULONG thread_input);
23 static void thread_2_entry(ULONG thread_input);
24 static void thread_3_entry(ULONG thread_input);
110 static void thread_0_entry(ULONG thread_input) in thread_0_entry() argument
114 if ((thread_input != 0) || (thread_1_counter) || (thread_2_counter) || in thread_0_entry()
126 static void thread_1_entry(ULONG thread_input) in thread_1_entry() argument
130 if ((thread_input != 1) || (thread_0_counter != 1) || (thread_2_counter) || in thread_1_entry()
142 static void thread_2_entry(ULONG thread_input) in thread_2_entry() argument
146 if ((thread_input != 2) || (thread_0_counter != 1) || (thread_1_counter != 1) || in thread_2_entry()
158 static void thread_3_entry(ULONG thread_input) in thread_3_entry() argument
165 if ((thread_input != 3) || (thread_0_counter != 1) || (thread_1_counter != 1) || in thread_3_entry()