Lines Matching refs:c

56       auto c = a;  in test_access()  local
57 ++c[0]; in test_access()
58 assert(c[0] == 42 + 1); in test_access()
59 assert(c[1] == 42); in test_access()
62 auto c = a; in test_access() local
63 auto ret = c[0]++; in test_access()
65 assert(c[0] == 42 + 1); in test_access()
66 assert(c[1] == 42); in test_access()
69 auto c = a; in test_access() local
70 --c[0]; in test_access()
71 assert(c[0] == 42 - 1); in test_access()
72 assert(c[1] == 42); in test_access()
75 auto c = a; in test_access() local
76 auto ret = c[0]--; in test_access()
78 assert(c[0] == 42 - 1); in test_access()
79 assert(c[1] == 42); in test_access()
83 auto c = a; in test_access() local
84 c[0] += b[0]; in test_access()
85 assert(c[0] == 42 + 4); in test_access()
86 assert(c[1] == 42); in test_access()
89 auto c = a; in test_access() local
90 c[0] -= b[0]; in test_access()
91 assert(c[0] == 42 - 4); in test_access()
92 assert(c[1] == 42); in test_access()
95 auto c = a; in test_access() local
96 c[0] *= b[0]; in test_access()
97 assert(c[0] == 42 * 4); in test_access()
98 assert(c[1] == 42); in test_access()
101 auto c = a; in test_access() local
102 c[0] /= b[0]; in test_access()
103 assert(c[0] == 42 / 4); in test_access()
104 assert(c[1] == 42); in test_access()
107 auto c = a; in test_access() local
108 c[0] %= b[0]; in test_access()
109 assert(c[0] == 42 % 4); in test_access()
110 assert(c[1] == 42); in test_access()
113 auto c = a; in test_access() local
114 c[0] >>= b[0]; in test_access()
115 assert(c[0] == (42 >> 4)); in test_access()
116 assert(c[1] == 42); in test_access()
119 auto c = a; in test_access() local
120 c[0] <<= b[0]; in test_access()
121 assert(c[0] == (42 << 4)); in test_access()
122 assert(c[1] == 42); in test_access()
125 auto c = a; in test_access() local
126 c[0] &= b[0]; in test_access()
127 assert(c[0] == (42 & 4)); in test_access()
128 assert(c[1] == 42); in test_access()
131 auto c = a; in test_access() local
132 c[0] |= b[0]; in test_access()
133 assert(c[0] == (42 | 4)); in test_access()
134 assert(c[1] == 42); in test_access()
137 auto c = a; in test_access() local
138 c[0] ^= b[0]; in test_access()
139 assert(c[0] == (42 ^ 4)); in test_access()
140 assert(c[1] == 42); in test_access()
144 auto c = a; in test_access() local
145 (void)(a[0] + (c[0] += a[0])); in test_access()
148 auto c = a; in test_access() local
149 (void)(a[0] + (c[0] -= a[0])); in test_access()
152 auto c = a; in test_access() local
153 (void)(a[0] + (c[0] *= a[0])); in test_access()
156 auto c = a; in test_access() local
157 (void)(a[0] + (c[0] /= a[0])); in test_access()
160 auto c = a; in test_access() local
161 (void)(a[0] + (c[0] %= a[0])); in test_access()
164 auto c = a; in test_access() local
165 (void)(a[0] + (c[0] >>= b[0])); in test_access()
168 auto c = a; in test_access() local
169 (void)(a[0] + (c[0] <<= b[0])); in test_access()
172 auto c = a; in test_access() local
173 (void)(a[0] + (c[0] &= a[0])); in test_access()
176 auto c = a; in test_access() local
177 (void)(a[0] + (c[0] |= a[0])); in test_access()
180 auto c = a; in test_access() local
181 (void)(a[0] + (c[0] ^= a[0])); in test_access()