Lines Matching refs:s1
1 struct s1 {
12 struct s1 s1;
17 struct s1 s1;
21 static struct s1 s1_positional = { 5, 10 };
22 static struct s1 s1_designated = { .x = 5, .y = 10 };
30 .s1 = { 5, 10 },
38 .s1 = { .x = 5, .y = 10 },
46 .s1 = { 5, 10 },
54 .s1 = { .x = 5, .y = 10 },
65 static struct s1 s1_array[] = {
75 static struct s1 ret_s1_positional(void)
77 return ((struct s1){ 5, 10 });
80 static struct s1 ret_s1_designated(void)
82 return ((struct s1){ .x = 5, .y = 10 });
106 .s1 = { 5, 10 },
122 .s1 = { .x = 5, .y = 10 },
138 .s1 = { 5, 10 },
154 .s1 = { .x = 5, .y = 10 },