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.
1437 * raw_atomic_long_try_cmpxchg() - atomic compare and exchange with full ordering
1442 * If (@v == @old), atomically updates @v to @new with full ordering.
1529 * raw_atomic_long_sub_and_test() - atomic subtract and test if zero with full ordering
1533 * Atomically updates @v to (@v - @i) with full ordering.
1550 * raw_atomic_long_dec_and_test() - atomic decrement and test if zero with full ordering
1553 * Atomically updates @v to (@v - 1) with full ordering.
1570 * raw_atomic_long_inc_and_test() - atomic increment and test if zero with full ordering
1573 * Atomically updates @v to (@v + 1) with full ordering.
1590 * raw_atomic_long_add_negative() - atomic add and test if negative with full ordering
1594 * Atomically updates @v to (@v + @i) with full ordering.
1674 * raw_atomic_long_fetch_add_unless() - atomic add unless value with full ordering
1679 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
1696 * raw_atomic_long_add_unless() - atomic add unless value with full ordering
1701 * If (@v != @u), atomically updates @v to (@v + @a) with full ordering.
1718 * raw_atomic_long_inc_not_zero() - atomic increment unless zero with full ordering
1721 * If (@v != 0), atomically updates @v to (@v + 1) with full ordering.
1738 * raw_atomic_long_inc_unless_negative() - atomic increment unless negative with full ordering
1741 * If (@v >= 0), atomically updates @v to (@v + 1) with full ordering.
1758 * raw_atomic_long_dec_unless_positive() - atomic decrement unless positive with full ordering
1761 * If (@v <= 0), atomically updates @v to (@v - 1) with full ordering.
1778 * raw_atomic_long_dec_if_positive() - atomic decrement if positive with full ordering
1781 * If (@v > 0), atomically updates @v to (@v - 1) with full ordering.