Lines Matching full:arg1
103 int testfunction (int arg1, int * arg2); /* check prototypes */
111 int testfunction (int arg1, int * arg2) /* check definitions */
113 return arg2[arg1];
163 void test3function (void_ptr arg1, void_func arg2)
165 void test3function (arg1, arg2)
166 void_ptr arg1;
170 char * locptr = (char *) arg1; /* check casting to and from void * */
171 arg1 = (void *) locptr;
187 int test4function (const int arg1)
189 int test4function (arg1)
190 const int arg1;
193 return carray[arg1];