Lines Matching refs:atomic_t

21  * @v: pointer to atomic_t
30 atomic_read(const atomic_t *v)
38 * @v: pointer to atomic_t
47 atomic_read_acquire(const atomic_t *v)
55 * @v: pointer to atomic_t
65 atomic_set(atomic_t *v, int i)
73 * @v: pointer to atomic_t
83 atomic_set_release(atomic_t *v, int i)
93 * @v: pointer to atomic_t
102 atomic_add(int i, atomic_t *v)
111 * @v: pointer to atomic_t
120 atomic_add_return(int i, atomic_t *v)
130 * @v: pointer to atomic_t
139 atomic_add_return_acquire(int i, atomic_t *v)
148 * @v: pointer to atomic_t
157 atomic_add_return_release(int i, atomic_t *v)
167 * @v: pointer to atomic_t
176 atomic_add_return_relaxed(int i, atomic_t *v)
185 * @v: pointer to atomic_t
194 atomic_fetch_add(int i, atomic_t *v)
204 * @v: pointer to atomic_t
213 atomic_fetch_add_acquire(int i, atomic_t *v)
222 * @v: pointer to atomic_t
231 atomic_fetch_add_release(int i, atomic_t *v)
241 * @v: pointer to atomic_t
250 atomic_fetch_add_relaxed(int i, atomic_t *v)
259 * @v: pointer to atomic_t
268 atomic_sub(int i, atomic_t *v)
277 * @v: pointer to atomic_t
286 atomic_sub_return(int i, atomic_t *v)
296 * @v: pointer to atomic_t
305 atomic_sub_return_acquire(int i, atomic_t *v)
314 * @v: pointer to atomic_t
323 atomic_sub_return_release(int i, atomic_t *v)
333 * @v: pointer to atomic_t
342 atomic_sub_return_relaxed(int i, atomic_t *v)
351 * @v: pointer to atomic_t
360 atomic_fetch_sub(int i, atomic_t *v)
370 * @v: pointer to atomic_t
379 atomic_fetch_sub_acquire(int i, atomic_t *v)
388 * @v: pointer to atomic_t
397 atomic_fetch_sub_release(int i, atomic_t *v)
407 * @v: pointer to atomic_t
416 atomic_fetch_sub_relaxed(int i, atomic_t *v)
424 * @v: pointer to atomic_t
433 atomic_inc(atomic_t *v)
441 * @v: pointer to atomic_t
450 atomic_inc_return(atomic_t *v)
459 * @v: pointer to atomic_t
468 atomic_inc_return_acquire(atomic_t *v)
476 * @v: pointer to atomic_t
485 atomic_inc_return_release(atomic_t *v)
494 * @v: pointer to atomic_t
503 atomic_inc_return_relaxed(atomic_t *v)
511 * @v: pointer to atomic_t
520 atomic_fetch_inc(atomic_t *v)
529 * @v: pointer to atomic_t
538 atomic_fetch_inc_acquire(atomic_t *v)
546 * @v: pointer to atomic_t
555 atomic_fetch_inc_release(atomic_t *v)
564 * @v: pointer to atomic_t
573 atomic_fetch_inc_relaxed(atomic_t *v)
581 * @v: pointer to atomic_t
590 atomic_dec(atomic_t *v)
598 * @v: pointer to atomic_t
607 atomic_dec_return(atomic_t *v)
616 * @v: pointer to atomic_t
625 atomic_dec_return_acquire(atomic_t *v)
633 * @v: pointer to atomic_t
642 atomic_dec_return_release(atomic_t *v)
651 * @v: pointer to atomic_t
660 atomic_dec_return_relaxed(atomic_t *v)
668 * @v: pointer to atomic_t
677 atomic_fetch_dec(atomic_t *v)
686 * @v: pointer to atomic_t
695 atomic_fetch_dec_acquire(atomic_t *v)
703 * @v: pointer to atomic_t
712 atomic_fetch_dec_release(atomic_t *v)
721 * @v: pointer to atomic_t
730 atomic_fetch_dec_relaxed(atomic_t *v)
739 * @v: pointer to atomic_t
748 atomic_and(int i, atomic_t *v)
757 * @v: pointer to atomic_t
766 atomic_fetch_and(int i, atomic_t *v)
776 * @v: pointer to atomic_t
785 atomic_fetch_and_acquire(int i, atomic_t *v)
794 * @v: pointer to atomic_t
803 atomic_fetch_and_release(int i, atomic_t *v)
813 * @v: pointer to atomic_t
822 atomic_fetch_and_relaxed(int i, atomic_t *v)
831 * @v: pointer to atomic_t
840 atomic_andnot(int i, atomic_t *v)
849 * @v: pointer to atomic_t
858 atomic_fetch_andnot(int i, atomic_t *v)
868 * @v: pointer to atomic_t
877 atomic_fetch_andnot_acquire(int i, atomic_t *v)
886 * @v: pointer to atomic_t
895 atomic_fetch_andnot_release(int i, atomic_t *v)
905 * @v: pointer to atomic_t
914 atomic_fetch_andnot_relaxed(int i, atomic_t *v)
923 * @v: pointer to atomic_t
932 atomic_or(int i, atomic_t *v)
941 * @v: pointer to atomic_t
950 atomic_fetch_or(int i, atomic_t *v)
960 * @v: pointer to atomic_t
969 atomic_fetch_or_acquire(int i, atomic_t *v)
978 * @v: pointer to atomic_t
987 atomic_fetch_or_release(int i, atomic_t *v)
997 * @v: pointer to atomic_t
1006 atomic_fetch_or_relaxed(int i, atomic_t *v)
1015 * @v: pointer to atomic_t
1024 atomic_xor(int i, atomic_t *v)
1033 * @v: pointer to atomic_t
1042 atomic_fetch_xor(int i, atomic_t *v)
1052 * @v: pointer to atomic_t
1061 atomic_fetch_xor_acquire(int i, atomic_t *v)
1070 * @v: pointer to atomic_t
1079 atomic_fetch_xor_release(int i, atomic_t *v)
1089 * @v: pointer to atomic_t
1098 atomic_fetch_xor_relaxed(int i, atomic_t *v)
1106 * @v: pointer to atomic_t
1116 atomic_xchg(atomic_t *v, int new)
1125 * @v: pointer to atomic_t
1135 atomic_xchg_acquire(atomic_t *v, int new)
1143 * @v: pointer to atomic_t
1153 atomic_xchg_release(atomic_t *v, int new)
1162 * @v: pointer to atomic_t
1172 atomic_xchg_relaxed(atomic_t *v, int new)
1180 * @v: pointer to atomic_t
1191 atomic_cmpxchg(atomic_t *v, int old, int new)
1200 * @v: pointer to atomic_t
1211 atomic_cmpxchg_acquire(atomic_t *v, int old, int new)
1219 * @v: pointer to atomic_t
1230 atomic_cmpxchg_release(atomic_t *v, int old, int new)
1239 * @v: pointer to atomic_t
1250 atomic_cmpxchg_relaxed(atomic_t *v, int old, int new)
1258 * @v: pointer to atomic_t
1270 atomic_try_cmpxchg(atomic_t *v, int *old, int new)
1280 * @v: pointer to atomic_t
1292 atomic_try_cmpxchg_acquire(atomic_t *v, int *old, int new)
1301 * @v: pointer to atomic_t
1313 atomic_try_cmpxchg_release(atomic_t *v, int *old, int new)
1323 * @v: pointer to atomic_t
1335 atomic_try_cmpxchg_relaxed(atomic_t *v, int *old, int new)
1345 * @v: pointer to atomic_t
1354 atomic_sub_and_test(int i, atomic_t *v)
1363 * @v: pointer to atomic_t
1372 atomic_dec_and_test(atomic_t *v)
1381 * @v: pointer to atomic_t
1390 atomic_inc_and_test(atomic_t *v)
1400 * @v: pointer to atomic_t
1409 atomic_add_negative(int i, atomic_t *v)
1419 * @v: pointer to atomic_t
1428 atomic_add_negative_acquire(int i, atomic_t *v)
1437 * @v: pointer to atomic_t
1446 atomic_add_negative_release(int i, atomic_t *v)
1456 * @v: pointer to atomic_t
1465 atomic_add_negative_relaxed(int i, atomic_t *v)
1473 * @v: pointer to atomic_t
1484 atomic_fetch_add_unless(atomic_t *v, int a, int u)
1493 * @v: pointer to atomic_t
1504 atomic_add_unless(atomic_t *v, int a, int u)
1513 * @v: pointer to atomic_t
1522 atomic_inc_not_zero(atomic_t *v)
1531 * @v: pointer to atomic_t
1540 atomic_inc_unless_negative(atomic_t *v)
1549 * @v: pointer to atomic_t
1558 atomic_dec_unless_positive(atomic_t *v)
1567 * @v: pointer to atomic_t
1576 atomic_dec_if_positive(atomic_t *v)