Lines Matching full:full
109 * atomic_add_return() - atomic add with full ordering
113 * Atomically updates @v to (@v + @i) with full ordering.
183 * atomic_fetch_add() - atomic add with full ordering
187 * Atomically updates @v to (@v + @i) with full ordering.
275 * atomic_sub_return() - atomic subtract with full ordering
279 * Atomically updates @v to (@v - @i) with full ordering.
349 * atomic_fetch_sub() - atomic subtract with full ordering
353 * Atomically updates @v to (@v - @i) with full ordering.
440 * atomic_inc_return() - atomic increment with full ordering
443 * Atomically updates @v to (@v + 1) with full ordering.
510 * atomic_fetch_inc() - atomic increment with full ordering
513 * Atomically updates @v to (@v + 1) with full ordering.
597 * atomic_dec_return() - atomic decrement with full ordering
600 * Atomically updates @v to (@v - 1) with full ordering.
667 * atomic_fetch_dec() - atomic decrement with full ordering
670 * Atomically updates @v to (@v - 1) with full ordering.
755 * atomic_fetch_and() - atomic bitwise AND with full ordering
759 * Atomically updates @v to (@v & @i) with full ordering.
847 * atomic_fetch_andnot() - atomic bitwise AND NOT with full ordering
851 * Atomically updates @v to (@v & ~@i) with full ordering.
939 * atomic_fetch_or() - atomic bitwise OR with full ordering
943 * Atomically updates @v to (@v | @i) with full ordering.
1031 * atomic_fetch_xor() - atomic bitwise XOR with full ordering
1035 * Atomically updates @v to (@v ^ @i) with full ordering.
1105 * atomic_xchg() - atomic exchange with full ordering
1109 * Atomically updates @v to @new with full ordering.
1179 * atomic_cmpxchg() - atomic compare and exchange with full ordering
1184 * If (@v == @old), atomically updates @v to @new with full ordering.
1261 * atomic_try_cmpxchg() - atomic compare and exchange with full ordering
1266 * If (@v == @old), atomically updates @v to @new with full ordering.
1351 * atomic_sub_and_test() - atomic subtract and test if zero with full ordering
1355 * Atomically updates @v to (@v - @i) with full ordering.
1370 * atomic_dec_and_test() - atomic decrement and test if zero with full ordering
1373 * Atomically updates @v to (@v - 1) with full ordering.
1388 * atomic_inc_and_test() - atomic increment and test if zero with full ordering
1391 * Atomically updates @v to (@v + 1) with full ordering.
1406 * atomic_add_negative() - atomic add and test if negative with full ordering
1410 * Atomically updates @v to (@v + @i) with full ordering.
1480 * atomic_fetch_add_unless() - atomic add unless value with full ordering
1485 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
1501 * atomic_add_unless() - atomic add unless value with full ordering
1506 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
1522 * atomic_inc_not_zero() - atomic increment unless zero with full ordering
1525 * If (@v != 0), atomically updates @v to (@v + 1) with full ordering.
1541 * atomic_inc_unless_negative() - atomic increment unless negative with full ordering
1544 * If (@v >= 0), atomically updates @v to (@v + 1) with full ordering.
1560 * atomic_dec_unless_positive() - atomic decrement unless positive with full ordering
1563 * If (@v <= 0), atomically updates @v to (@v - 1) with full ordering.
1579 * atomic_dec_if_positive() - atomic decrement if positive with full ordering
1582 * If (@v > 0), atomically updates @v to (@v - 1) with full ordering.
1687 * atomic64_add_return() - atomic add with full ordering
1691 * Atomically updates @v to (@v + @i) with full ordering.
1761 * atomic64_fetch_add() - atomic add with full ordering
1765 * Atomically updates @v to (@v + @i) with full ordering.
1853 * atomic64_sub_return() - atomic subtract with full ordering
1857 * Atomically updates @v to (@v - @i) with full ordering.
1927 * atomic64_fetch_sub() - atomic subtract with full ordering
1931 * Atomically updates @v to (@v - @i) with full ordering.
2018 * atomic64_inc_return() - atomic increment with full ordering
2021 * Atomically updates @v to (@v + 1) with full ordering.
2088 * atomic64_fetch_inc() - atomic increment with full ordering
2091 * Atomically updates @v to (@v + 1) with full ordering.
2175 * atomic64_dec_return() - atomic decrement with full ordering
2178 * Atomically updates @v to (@v - 1) with full ordering.
2245 * atomic64_fetch_dec() - atomic decrement with full ordering
2248 * Atomically updates @v to (@v - 1) with full ordering.
2333 * atomic64_fetch_and() - atomic bitwise AND with full ordering
2337 * Atomically updates @v to (@v & @i) with full ordering.
2425 * atomic64_fetch_andnot() - atomic bitwise AND NOT with full ordering
2429 * Atomically updates @v to (@v & ~@i) with full ordering.
2517 * atomic64_fetch_or() - atomic bitwise OR with full ordering
2521 * Atomically updates @v to (@v | @i) with full ordering.
2609 * atomic64_fetch_xor() - atomic bitwise XOR with full ordering
2613 * Atomically updates @v to (@v ^ @i) with full ordering.
2683 * atomic64_xchg() - atomic exchange with full ordering
2687 * Atomically updates @v to @new with full ordering.
2757 * atomic64_cmpxchg() - atomic compare and exchange with full ordering
2762 * If (@v == @old), atomically updates @v to @new with full ordering.
2839 * atomic64_try_cmpxchg() - atomic compare and exchange with full ordering
2844 * If (@v == @old), atomically updates @v to @new with full ordering.
2929 * atomic64_sub_and_test() - atomic subtract and test if zero with full ordering
2933 * Atomically updates @v to (@v - @i) with full ordering.
2948 * atomic64_dec_and_test() - atomic decrement and test if zero with full ordering
2951 * Atomically updates @v to (@v - 1) with full ordering.
2966 * atomic64_inc_and_test() - atomic increment and test if zero with full ordering
2969 * Atomically updates @v to (@v + 1) with full ordering.
2984 * atomic64_add_negative() - atomic add and test if negative with full ordering
2988 * Atomically updates @v to (@v + @i) with full ordering.
3058 * atomic64_fetch_add_unless() - atomic add unless value with full ordering
3063 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
3079 * atomic64_add_unless() - atomic add unless value with full ordering
3084 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
3100 * atomic64_inc_not_zero() - atomic increment unless zero with full ordering
3103 * If (@v != 0), atomically updates @v to (@v + 1) with full ordering.
3119 * atomic64_inc_unless_negative() - atomic increment unless negative with full ordering
3122 * If (@v >= 0), atomically updates @v to (@v + 1) with full ordering.
3138 * atomic64_dec_unless_positive() - atomic decrement unless positive with full ordering
3141 * If (@v <= 0), atomically updates @v to (@v - 1) with full ordering.
3157 * atomic64_dec_if_positive() - atomic decrement if positive with full ordering
3160 * If (@v > 0), atomically updates @v to (@v - 1) with full ordering.
3265 * atomic_long_add_return() - atomic add with full ordering
3269 * Atomically updates @v to (@v + @i) with full ordering.
3339 * atomic_long_fetch_add() - atomic add with full ordering
3343 * Atomically updates @v to (@v + @i) with full ordering.
3431 * atomic_long_sub_return() - atomic subtract with full ordering
3435 * Atomically updates @v to (@v - @i) with full ordering.
3505 * atomic_long_fetch_sub() - atomic subtract with full ordering
3509 * Atomically updates @v to (@v - @i) with full ordering.
3596 * atomic_long_inc_return() - atomic increment with full ordering
3599 * Atomically updates @v to (@v + 1) with full ordering.
3666 * atomic_long_fetch_inc() - atomic increment with full ordering
3669 * Atomically updates @v to (@v + 1) with full ordering.
3753 * atomic_long_dec_return() - atomic decrement with full ordering
3756 * Atomically updates @v to (@v - 1) with full ordering.
3823 * atomic_long_fetch_dec() - atomic decrement with full ordering
3826 * Atomically updates @v to (@v - 1) with full ordering.
3911 * atomic_long_fetch_and() - atomic bitwise AND with full ordering
3915 * Atomically updates @v to (@v & @i) with full ordering.
4003 * atomic_long_fetch_andnot() - atomic bitwise AND NOT with full ordering
4007 * Atomically updates @v to (@v & ~@i) with full ordering.
4095 * atomic_long_fetch_or() - atomic bitwise OR with full ordering
4099 * Atomically updates @v to (@v | @i) with full ordering.
4187 * atomic_long_fetch_xor() - atomic bitwise XOR with full ordering
4191 * Atomically updates @v to (@v ^ @i) with full ordering.
4261 * atomic_long_xchg() - atomic exchange with full ordering
4265 * Atomically updates @v to @new with full ordering.
4335 * atomic_long_cmpxchg() - atomic compare and exchange with full ordering
4340 * If (@v == @old), atomically updates @v to @new with full ordering.
4417 * atomic_long_try_cmpxchg() - atomic compare and exchange with full ordering
4422 * If (@v == @old), atomically updates @v to @new with full ordering.
4507 * atomic_long_sub_and_test() - atomic subtract and test if zero with full ordering
4511 * Atomically updates @v to (@v - @i) with full ordering.
4526 * atomic_long_dec_and_test() - atomic decrement and test if zero with full ordering
4529 * Atomically updates @v to (@v - 1) with full ordering.
4544 * atomic_long_inc_and_test() - atomic increment and test if zero with full ordering
4547 * Atomically updates @v to (@v + 1) with full ordering.
4562 * atomic_long_add_negative() - atomic add and test if negative with full ordering
4566 * Atomically updates @v to (@v + @i) with full ordering.
4636 * atomic_long_fetch_add_unless() - atomic add unless value with full ordering
4641 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
4657 * atomic_long_add_unless() - atomic add unless value with full ordering
4662 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
4678 * atomic_long_inc_not_zero() - atomic increment unless zero with full ordering
4681 * If (@v != 0), atomically updates @v to (@v + 1) with full ordering.
4697 * atomic_long_inc_unless_negative() - atomic increment unless negative with full ordering
4700 * If (@v >= 0), atomically updates @v to (@v + 1) with full ordering.
4716 * atomic_long_dec_unless_positive() - atomic decrement unless positive with full ordering
4719 * If (@v <= 0), atomically updates @v to (@v - 1) with full ordering.
4735 * atomic_long_dec_if_positive() - atomic decrement if positive with full ordering
4738 * If (@v > 0), atomically updates @v to (@v - 1) with full ordering.