Lines Matching defs:uc

10 unsigned char uc;
26 (void) __sync_fetch_and_add (&uc, 1);
37 (void) __sync_fetch_and_sub (&uc, 1);
48 (void) __sync_fetch_and_or (&uc, 1);
59 (void) __sync_fetch_and_xor (&uc, 1);
70 (void) __sync_fetch_and_and (&uc, 1);
81 (void) __sync_fetch_and_nand (&uc, 1);
95 uc = __sync_fetch_and_add (&uc, 11);
106 uc = __sync_fetch_and_sub (&uc, 11);
117 uc = __sync_fetch_and_or (&uc, 11);
128 uc = __sync_fetch_and_xor (&uc, 11);
139 uc = __sync_fetch_and_and (&uc, 11);
150 uc = __sync_fetch_and_nand (&uc, 11);
163 sc = __sync_add_and_fetch (&sc, uc);
164 uc = __sync_add_and_fetch (&uc, uc);
165 ss = __sync_add_and_fetch (&ss, uc);
166 us = __sync_add_and_fetch (&us, uc);
167 si = __sync_add_and_fetch (&si, uc);
168 ui = __sync_add_and_fetch (&ui, uc);
169 sl = __sync_add_and_fetch (&sl, uc);
170 ul = __sync_add_and_fetch (&ul, uc);
171 sll = __sync_add_and_fetch (&sll, uc);
172 ull = __sync_add_and_fetch (&ull, uc);
174 sc = __sync_sub_and_fetch (&sc, uc);
175 uc = __sync_sub_and_fetch (&uc, uc);
176 ss = __sync_sub_and_fetch (&ss, uc);
177 us = __sync_sub_and_fetch (&us, uc);
178 si = __sync_sub_and_fetch (&si, uc);
179 ui = __sync_sub_and_fetch (&ui, uc);
180 sl = __sync_sub_and_fetch (&sl, uc);
181 ul = __sync_sub_and_fetch (&ul, uc);
182 sll = __sync_sub_and_fetch (&sll, uc);
183 ull = __sync_sub_and_fetch (&ull, uc);
185 sc = __sync_or_and_fetch (&sc, uc);
186 uc = __sync_or_and_fetch (&uc, uc);
187 ss = __sync_or_and_fetch (&ss, uc);
188 us = __sync_or_and_fetch (&us, uc);
189 si = __sync_or_and_fetch (&si, uc);
190 ui = __sync_or_and_fetch (&ui, uc);
191 sl = __sync_or_and_fetch (&sl, uc);
192 ul = __sync_or_and_fetch (&ul, uc);
193 sll = __sync_or_and_fetch (&sll, uc);
194 ull = __sync_or_and_fetch (&ull, uc);
196 sc = __sync_xor_and_fetch (&sc, uc);
197 uc = __sync_xor_and_fetch (&uc, uc);
198 ss = __sync_xor_and_fetch (&ss, uc);
199 us = __sync_xor_and_fetch (&us, uc);
200 si = __sync_xor_and_fetch (&si, uc);
201 ui = __sync_xor_and_fetch (&ui, uc);
202 sl = __sync_xor_and_fetch (&sl, uc);
203 ul = __sync_xor_and_fetch (&ul, uc);
204 sll = __sync_xor_and_fetch (&sll, uc);
205 ull = __sync_xor_and_fetch (&ull, uc);
207 sc = __sync_and_and_fetch (&sc, uc);
208 uc = __sync_and_and_fetch (&uc, uc);
209 ss = __sync_and_and_fetch (&ss, uc);
210 us = __sync_and_and_fetch (&us, uc);
211 si = __sync_and_and_fetch (&si, uc);
212 ui = __sync_and_and_fetch (&ui, uc);
213 sl = __sync_and_and_fetch (&sl, uc);
214 ul = __sync_and_and_fetch (&ul, uc);
215 sll = __sync_and_and_fetch (&sll, uc);
216 ull = __sync_and_and_fetch (&ull, uc);
218 sc = __sync_nand_and_fetch (&sc, uc);
219 uc = __sync_nand_and_fetch (&uc, uc);
220 ss = __sync_nand_and_fetch (&ss, uc);
221 us = __sync_nand_and_fetch (&us, uc);
222 si = __sync_nand_and_fetch (&si, uc);
223 ui = __sync_nand_and_fetch (&ui, uc);
224 sl = __sync_nand_and_fetch (&sl, uc);
225 ul = __sync_nand_and_fetch (&ul, uc);
226 sll = __sync_nand_and_fetch (&sll, uc);
227 ull = __sync_nand_and_fetch (&ull, uc);
232 sc = __sync_val_compare_and_swap (&sc, uc, sc);
233 uc = __sync_val_compare_and_swap (&uc, uc, sc);
234 ss = __sync_val_compare_and_swap (&ss, uc, sc);
235 us = __sync_val_compare_and_swap (&us, uc, sc);
236 si = __sync_val_compare_and_swap (&si, uc, sc);
237 ui = __sync_val_compare_and_swap (&ui, uc, sc);
238 sl = __sync_val_compare_and_swap (&sl, uc, sc);
239 ul = __sync_val_compare_and_swap (&ul, uc, sc);
240 sll = __sync_val_compare_and_swap (&sll, uc, sc);
241 ull = __sync_val_compare_and_swap (&ull, uc, sc);
243 ui = __sync_bool_compare_and_swap (&sc, uc, sc);
244 ui = __sync_bool_compare_and_swap (&uc, uc, sc);
245 ui = __sync_bool_compare_and_swap (&ss, uc, sc);
246 ui = __sync_bool_compare_and_swap (&us, uc, sc);
247 ui = __sync_bool_compare_and_swap (&si, uc, sc);
248 ui = __sync_bool_compare_and_swap (&ui, uc, sc);
249 ui = __sync_bool_compare_and_swap (&sl, uc, sc);
250 ui = __sync_bool_compare_and_swap (&ul, uc, sc);
251 ui = __sync_bool_compare_and_swap (&sll, uc, sc);
252 ui = __sync_bool_compare_and_swap (&ull, uc, sc);
258 uc = __sync_lock_test_and_set (&uc, 1);
271 __sync_lock_release (&uc);