Lines Matching full:full

128  * raw_atomic_long_add_return() - atomic add with full ordering
132 * Atomically updates @v to (@v + @i) with full ordering.
212 * raw_atomic_long_fetch_add() - atomic add with full ordering
216 * Atomically updates @v to (@v + @i) with full ordering.
317 * raw_atomic_long_sub_return() - atomic subtract with full ordering
321 * Atomically updates @v to (@v - @i) with full ordering.
401 * raw_atomic_long_fetch_sub() - atomic subtract with full ordering
405 * Atomically updates @v to (@v - @i) with full ordering.
505 * raw_atomic_long_inc_return() - atomic increment with full ordering
508 * Atomically updates @v to (@v + 1) with full ordering.
585 * raw_atomic_long_fetch_inc() - atomic increment with full ordering
588 * Atomically updates @v to (@v + 1) with full ordering.
685 * raw_atomic_long_dec_return() - atomic decrement with full ordering
688 * Atomically updates @v to (@v - 1) with full ordering.
765 * raw_atomic_long_fetch_dec() - atomic decrement with full ordering
768 * Atomically updates @v to (@v - 1) with full ordering.
866 * raw_atomic_long_fetch_and() - atomic bitwise AND with full ordering
870 * Atomically updates @v to (@v & @i) with full ordering.
971 * raw_atomic_long_fetch_andnot() - atomic bitwise AND NOT with full ordering
975 * Atomically updates @v to (@v & ~@i) with full ordering.
1076 * raw_atomic_long_fetch_or() - atomic bitwise OR with full ordering
1080 * Atomically updates @v to (@v | @i) with full ordering.
1181 * raw_atomic_long_fetch_xor() - atomic bitwise XOR with full ordering
1185 * Atomically updates @v to (@v ^ @i) with full ordering.
1265 * raw_atomic_long_xchg() - atomic exchange with full ordering
1269 * Atomically updates @v to @new with full ordering.
1349 * raw_atomic_long_cmpxchg() - atomic compare and exchange with full ordering
1354 * If (@v == @old), atomically updates @v to @new with full ordering.
1441 * raw_atomic_long_try_cmpxchg() - atomic compare and exchange with full ordering
1446 * If (@v == @old), atomically updates @v to @new with full ordering.
1537 * raw_atomic_long_sub_and_test() - atomic subtract and test if zero with full ordering
1541 * Atomically updates @v to (@v - @i) with full ordering.
1558 * raw_atomic_long_dec_and_test() - atomic decrement and test if zero with full ordering
1561 * Atomically updates @v to (@v - 1) with full ordering.
1578 * raw_atomic_long_inc_and_test() - atomic increment and test if zero with full ordering
1581 * Atomically updates @v to (@v + 1) with full ordering.
1598 * raw_atomic_long_add_negative() - atomic add and test if negative with full ordering
1602 * Atomically updates @v to (@v + @i) with full ordering.
1682 * raw_atomic_long_fetch_add_unless() - atomic add unless value with full ordering
1687 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
1705 * raw_atomic_long_add_unless() - atomic add unless value with full ordering
1710 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
1728 * raw_atomic_long_inc_not_zero() - atomic increment unless zero with full ordering
1731 * If (@v != 0), atomically updates @v to (@v + 1) with full ordering.
1749 * raw_atomic_long_inc_unless_negative() - atomic increment unless negative with full ordering
1752 * If (@v >= 0), atomically updates @v to (@v + 1) with full ordering.
1770 * raw_atomic_long_dec_unless_positive() - atomic decrement unless positive with full ordering
1773 * If (@v <= 0), atomically updates @v to (@v - 1) with full ordering.
1791 * raw_atomic_long_dec_if_positive() - atomic decrement if positive with full ordering
1794 * If (@v > 0), atomically updates @v to (@v - 1) with full ordering.