Lines Matching defs:func
42 NOINLINE static void TestFunc6(MAYBE_UNUSED void (*func)(void*), MAYBE_UNUSED volatile bool* ready)
49 NOINLINE static void TestFunc5(void (*func)(void*), volatile bool* ready)
51 return TestFunc6(func, ready);
54 NOINLINE static void TestFunc4(void (*func)(void*), volatile bool* ready)
56 return TestFunc5(func, ready);
59 NOINLINE static void TestFunc3(void (*func)(void*), volatile bool* ready)
61 return TestFunc4(func, ready);
64 NOINLINE static void TestFunc2(void (*func)(void*), volatile bool* ready)
66 return TestFunc3(func, ready);
69 NOINLINE static void TestFunc1(void (*func)(void*), volatile bool* ready)
71 return TestFunc2(func, ready);