Lines Matching refs:uc

9 unsigned char uc;
25 (void) __sync_fetch_and_add (&uc, 1);
36 (void) __sync_fetch_and_sub (&uc, 1);
47 (void) __sync_fetch_and_or (&uc, 1);
58 (void) __sync_fetch_and_xor (&uc, 1);
69 (void) __sync_fetch_and_and (&uc, 1);
80 (void) __sync_fetch_and_nand (&uc, 1);
94 uc = __sync_fetch_and_add (&uc, 11);
105 uc = __sync_fetch_and_sub (&uc, 11);
116 uc = __sync_fetch_and_or (&uc, 11);
127 uc = __sync_fetch_and_xor (&uc, 11);
138 uc = __sync_fetch_and_and (&uc, 11);
149 uc = __sync_fetch_and_nand (&uc, 11);
162 sc = __sync_add_and_fetch (&sc, uc);
163 uc = __sync_add_and_fetch (&uc, uc);
164 ss = __sync_add_and_fetch (&ss, uc);
165 us = __sync_add_and_fetch (&us, uc);
166 si = __sync_add_and_fetch (&si, uc);
167 ui = __sync_add_and_fetch (&ui, uc);
168 sl = __sync_add_and_fetch (&sl, uc);
169 ul = __sync_add_and_fetch (&ul, uc);
170 sll = __sync_add_and_fetch (&sll, uc);
171 ull = __sync_add_and_fetch (&ull, uc);
173 sc = __sync_sub_and_fetch (&sc, uc);
174 uc = __sync_sub_and_fetch (&uc, uc);
175 ss = __sync_sub_and_fetch (&ss, uc);
176 us = __sync_sub_and_fetch (&us, uc);
177 si = __sync_sub_and_fetch (&si, uc);
178 ui = __sync_sub_and_fetch (&ui, uc);
179 sl = __sync_sub_and_fetch (&sl, uc);
180 ul = __sync_sub_and_fetch (&ul, uc);
181 sll = __sync_sub_and_fetch (&sll, uc);
182 ull = __sync_sub_and_fetch (&ull, uc);
184 sc = __sync_or_and_fetch (&sc, uc);
185 uc = __sync_or_and_fetch (&uc, uc);
186 ss = __sync_or_and_fetch (&ss, uc);
187 us = __sync_or_and_fetch (&us, uc);
188 si = __sync_or_and_fetch (&si, uc);
189 ui = __sync_or_and_fetch (&ui, uc);
190 sl = __sync_or_and_fetch (&sl, uc);
191 ul = __sync_or_and_fetch (&ul, uc);
192 sll = __sync_or_and_fetch (&sll, uc);
193 ull = __sync_or_and_fetch (&ull, uc);
195 sc = __sync_xor_and_fetch (&sc, uc);
196 uc = __sync_xor_and_fetch (&uc, uc);
197 ss = __sync_xor_and_fetch (&ss, uc);
198 us = __sync_xor_and_fetch (&us, uc);
199 si = __sync_xor_and_fetch (&si, uc);
200 ui = __sync_xor_and_fetch (&ui, uc);
201 sl = __sync_xor_and_fetch (&sl, uc);
202 ul = __sync_xor_and_fetch (&ul, uc);
203 sll = __sync_xor_and_fetch (&sll, uc);
204 ull = __sync_xor_and_fetch (&ull, uc);
206 sc = __sync_and_and_fetch (&sc, uc);
207 uc = __sync_and_and_fetch (&uc, uc);
208 ss = __sync_and_and_fetch (&ss, uc);
209 us = __sync_and_and_fetch (&us, uc);
210 si = __sync_and_and_fetch (&si, uc);
211 ui = __sync_and_and_fetch (&ui, uc);
212 sl = __sync_and_and_fetch (&sl, uc);
213 ul = __sync_and_and_fetch (&ul, uc);
214 sll = __sync_and_and_fetch (&sll, uc);
215 ull = __sync_and_and_fetch (&ull, uc);
217 sc = __sync_nand_and_fetch (&sc, uc);
218 uc = __sync_nand_and_fetch (&uc, uc);
219 ss = __sync_nand_and_fetch (&ss, uc);
220 us = __sync_nand_and_fetch (&us, uc);
221 si = __sync_nand_and_fetch (&si, uc);
222 ui = __sync_nand_and_fetch (&ui, uc);
223 sl = __sync_nand_and_fetch (&sl, uc);
224 ul = __sync_nand_and_fetch (&ul, uc);
225 sll = __sync_nand_and_fetch (&sll, uc);
226 ull = __sync_nand_and_fetch (&ull, uc);
231 sc = __sync_val_compare_and_swap (&sc, uc, sc);
232 uc = __sync_val_compare_and_swap (&uc, uc, sc);
233 ss = __sync_val_compare_and_swap (&ss, uc, sc);
234 us = __sync_val_compare_and_swap (&us, uc, sc);
235 si = __sync_val_compare_and_swap (&si, uc, sc);
236 ui = __sync_val_compare_and_swap (&ui, uc, sc);
237 sl = __sync_val_compare_and_swap (&sl, uc, sc);
238 ul = __sync_val_compare_and_swap (&ul, uc, sc);
239 sll = __sync_val_compare_and_swap (&sll, uc, sc);
240 ull = __sync_val_compare_and_swap (&ull, uc, sc);
242 ui = __sync_bool_compare_and_swap (&sc, uc, sc);
243 ui = __sync_bool_compare_and_swap (&uc, uc, sc);
244 ui = __sync_bool_compare_and_swap (&ss, uc, sc);
245 ui = __sync_bool_compare_and_swap (&us, uc, sc);
246 ui = __sync_bool_compare_and_swap (&si, uc, sc);
247 ui = __sync_bool_compare_and_swap (&ui, uc, sc);
248 ui = __sync_bool_compare_and_swap (&sl, uc, sc);
249 ui = __sync_bool_compare_and_swap (&ul, uc, sc);
250 ui = __sync_bool_compare_and_swap (&sll, uc, sc);
251 ui = __sync_bool_compare_and_swap (&ull, uc, sc);
257 uc = __sync_lock_test_and_set (&uc, 1);
270 __sync_lock_release (&uc);