Home | History | Annotate | Download | only in Sema

Lines Matching full:void

37 void f_i8_arg(i8_mode_t* x) { (void)x; }
38 void f_ui8_arg(ui8_mode_t* x) { (void)x; }
39 void f_i16_arg(i16_mode_t* x) { (void)x; }
40 void f_ui16_arg(ui16_mode_t* x) { (void)x; }
41 void f_i32_arg(i32_mode_t* x) { (void)x; }
42 void f_ui32_arg(ui32_mode_t* x) { (void)x; }
43 void f_i64_arg(i64_mode_t* x) { (void)x; }
44 void f_ui64_arg(ui64_mode_t* x) { (void)x; }
45 void test_char_to_i8(signed char* y) { f_i8_arg(y); }
46 void test_char_to_ui8(unsigned char* y) { f_ui8_arg(y); }
47 void test_short_to_i16(short* y) { f_i16_arg(y); }
48 void test_short_to_ui16(unsigned short* y) { f_ui16_arg(y); }
49 void test_int_to_i32(int* y) { f_i32_arg(y); }
50 void test_int_to_ui32(unsigned int* y) { f_ui32_arg(y); }
52 void test_long_to_i64(long long* y) { f_i64_arg(y); }
53 void test_long_to_ui64(unsigned long long* y) { f_ui64_arg(y); }
55 void test_long_to_i64(long* y) { f_i64_arg(y); }
56 void test_long_to_ui64(unsigned long* y) { f_ui64_arg(y); }