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.
1257 * atomic_try_cmpxchg() - atomic compare and exchange with full ordering
1262 * If (@v == @old), atomically updates @v to @new with full ordering.
1343 * atomic_sub_and_test() - atomic subtract and test if zero with full ordering
1347 * Atomically updates @v to (@v - @i) with full ordering.
1362 * atomic_dec_and_test() - atomic decrement and test if zero with full ordering
1365 * Atomically updates @v to (@v - 1) with full ordering.
1380 * atomic_inc_and_test() - atomic increment and test if zero with full ordering
1383 * Atomically updates @v to (@v + 1) with full ordering.
1398 * atomic_add_negative() - atomic add and test if negative with full ordering
1402 * Atomically updates @v to (@v + @i) with full ordering.
1472 * atomic_fetch_add_unless() - atomic add unless value with full ordering
1477 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
1492 * atomic_add_unless() - atomic add unless value with full ordering
1497 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
1512 * atomic_inc_not_zero() - atomic increment unless zero with full ordering
1515 * If (@v != 0), atomically updates @v to (@v + 1) with full ordering.
1530 * atomic_inc_unless_negative() - atomic increment unless negative with full ordering
1533 * If (@v >= 0), atomically updates @v to (@v + 1) with full ordering.
1548 * atomic_dec_unless_positive() - atomic decrement unless positive with full ordering
1551 * If (@v <= 0), atomically updates @v to (@v - 1) with full ordering.
1566 * atomic_dec_if_positive() - atomic decrement if positive with full ordering
1569 * If (@v > 0), atomically updates @v to (@v - 1) with full ordering.
1673 * atomic64_add_return() - atomic add with full ordering
1677 * Atomically updates @v to (@v + @i) with full ordering.
1747 * atomic64_fetch_add() - atomic add with full ordering
1751 * Atomically updates @v to (@v + @i) with full ordering.
1839 * atomic64_sub_return() - atomic subtract with full ordering
1843 * Atomically updates @v to (@v - @i) with full ordering.
1913 * atomic64_fetch_sub() - atomic subtract with full ordering
1917 * Atomically updates @v to (@v - @i) with full ordering.
2004 * atomic64_inc_return() - atomic increment with full ordering
2007 * Atomically updates @v to (@v + 1) with full ordering.
2074 * atomic64_fetch_inc() - atomic increment with full ordering
2077 * Atomically updates @v to (@v + 1) with full ordering.
2161 * atomic64_dec_return() - atomic decrement with full ordering
2164 * Atomically updates @v to (@v - 1) with full ordering.
2231 * atomic64_fetch_dec() - atomic decrement with full ordering
2234 * Atomically updates @v to (@v - 1) with full ordering.
2319 * atomic64_fetch_and() - atomic bitwise AND with full ordering
2323 * Atomically updates @v to (@v & @i) with full ordering.
2411 * atomic64_fetch_andnot() - atomic bitwise AND NOT with full ordering
2415 * Atomically updates @v to (@v & ~@i) with full ordering.
2503 * atomic64_fetch_or() - atomic bitwise OR with full ordering
2507 * Atomically updates @v to (@v | @i) with full ordering.
2595 * atomic64_fetch_xor() - atomic bitwise XOR with full ordering
2599 * Atomically updates @v to (@v ^ @i) with full ordering.
2669 * atomic64_xchg() - atomic exchange with full ordering
2673 * Atomically updates @v to @new with full ordering.
2743 * atomic64_cmpxchg() - atomic compare and exchange with full ordering
2748 * If (@v == @old), atomically updates @v to @new with full ordering.
2821 * atomic64_try_cmpxchg() - atomic compare and exchange with full ordering
2826 * If (@v == @old), atomically updates @v to @new with full ordering.
2907 * atomic64_sub_and_test() - atomic subtract and test if zero with full ordering
2911 * Atomically updates @v to (@v - @i) with full ordering.
2926 * atomic64_dec_and_test() - atomic decrement and test if zero with full ordering
2929 * Atomically updates @v to (@v - 1) with full ordering.
2944 * atomic64_inc_and_test() - atomic increment and test if zero with full ordering
2947 * Atomically updates @v to (@v + 1) with full ordering.
2962 * atomic64_add_negative() - atomic add and test if negative with full ordering
2966 * Atomically updates @v to (@v + @i) with full ordering.
3036 * atomic64_fetch_add_unless() - atomic add unless value with full ordering
3041 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
3056 * atomic64_add_unless() - atomic add unless value with full ordering
3061 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
3076 * atomic64_inc_not_zero() - atomic increment unless zero with full ordering
3079 * If (@v != 0), atomically updates @v to (@v + 1) with full ordering.
3094 * atomic64_inc_unless_negative() - atomic increment unless negative with full ordering
3097 * If (@v >= 0), atomically updates @v to (@v + 1) with full ordering.
3112 * atomic64_dec_unless_positive() - atomic decrement unless positive with full ordering
3115 * If (@v <= 0), atomically updates @v to (@v - 1) with full ordering.
3130 * atomic64_dec_if_positive() - atomic decrement if positive with full ordering
3133 * If (@v > 0), atomically updates @v to (@v - 1) with full ordering.
3237 * atomic_long_add_return() - atomic add with full ordering
3241 * Atomically updates @v to (@v + @i) with full ordering.
3311 * atomic_long_fetch_add() - atomic add with full ordering
3315 * Atomically updates @v to (@v + @i) with full ordering.
3403 * atomic_long_sub_return() - atomic subtract with full ordering
3407 * Atomically updates @v to (@v - @i) with full ordering.
3477 * atomic_long_fetch_sub() - atomic subtract with full ordering
3481 * Atomically updates @v to (@v - @i) with full ordering.
3568 * atomic_long_inc_return() - atomic increment with full ordering
3571 * Atomically updates @v to (@v + 1) with full ordering.
3638 * atomic_long_fetch_inc() - atomic increment with full ordering
3641 * Atomically updates @v to (@v + 1) with full ordering.
3725 * atomic_long_dec_return() - atomic decrement with full ordering
3728 * Atomically updates @v to (@v - 1) with full ordering.
3795 * atomic_long_fetch_dec() - atomic decrement with full ordering
3798 * Atomically updates @v to (@v - 1) with full ordering.
3883 * atomic_long_fetch_and() - atomic bitwise AND with full ordering
3887 * Atomically updates @v to (@v & @i) with full ordering.
3975 * atomic_long_fetch_andnot() - atomic bitwise AND NOT with full ordering
3979 * Atomically updates @v to (@v & ~@i) with full ordering.
4067 * atomic_long_fetch_or() - atomic bitwise OR with full ordering
4071 * Atomically updates @v to (@v | @i) with full ordering.
4159 * atomic_long_fetch_xor() - atomic bitwise XOR with full ordering
4163 * Atomically updates @v to (@v ^ @i) with full ordering.
4233 * atomic_long_xchg() - atomic exchange with full ordering
4237 * Atomically updates @v to @new with full ordering.
4307 * atomic_long_cmpxchg() - atomic compare and exchange with full ordering
4312 * If (@v == @old), atomically updates @v to @new with full ordering.
4385 * atomic_long_try_cmpxchg() - atomic compare and exchange with full ordering
4390 * If (@v == @old), atomically updates @v to @new with full ordering.
4471 * atomic_long_sub_and_test() - atomic subtract and test if zero with full ordering
4475 * Atomically updates @v to (@v - @i) with full ordering.
4490 * atomic_long_dec_and_test() - atomic decrement and test if zero with full ordering
4493 * Atomically updates @v to (@v - 1) with full ordering.
4508 * atomic_long_inc_and_test() - atomic increment and test if zero with full ordering
4511 * Atomically updates @v to (@v + 1) with full ordering.
4526 * atomic_long_add_negative() - atomic add and test if negative with full ordering
4530 * Atomically updates @v to (@v + @i) with full ordering.
4600 * atomic_long_fetch_add_unless() - atomic add unless value with full ordering
4605 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
4620 * atomic_long_add_unless() - atomic add unless value with full ordering
4625 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
4640 * atomic_long_inc_not_zero() - atomic increment unless zero with full ordering
4643 * If (@v != 0), atomically updates @v to (@v + 1) with full ordering.
4658 * atomic_long_inc_unless_negative() - atomic increment unless negative with full ordering
4661 * If (@v >= 0), atomically updates @v to (@v + 1) with full ordering.
4676 * atomic_long_dec_unless_positive() - atomic decrement unless positive with full ordering
4679 * If (@v <= 0), atomically updates @v to (@v - 1) with full ordering.
4694 * atomic_long_dec_if_positive() - atomic decrement if positive with full ordering
4697 * If (@v > 0), atomically updates @v to (@v - 1) with full ordering.