Home | History | Annotate | Download | only in Analysis

Lines Matching full:void

6 typedef void* (*MyFuncTest1)(void);
8 MyFuncTest1 test1_aux(void);
9 void test1(void) {
10 void *x;
11 void* (*p)(void);
12 p = ((void*) test1_aux());
13 if (p != ((void*) 0)) x = (*p)();
16 // Test casts from void* to function pointers. Same issue as above:
18 void* test2(void *p) {
38 static void