Lines Matching full:atomic
18 * \brief Atomic routines
29 * Atomic add one to the value at addr.
39 * Atomic add one to the value at addr.
50 * Atomic subtract one from the value at addr. Equal to rsAtomicSub(addr, 1)
59 * Atomic subtract one from the value at addr. Equal to rsAtomicSub(addr, 1)
69 * Atomic add a value to the value at addr. addr[0] += value
79 * Atomic add a value to the value at addr. addr[0] += value
90 * Atomic Subtract a value from the value at addr. addr[0] -= value
100 * Atomic Subtract a value from the value at addr. addr[0] -= value
111 * Atomic Bitwise and a value from the value at addr. addr[0] &= value
121 * Atomic Bitwise and a value from the value at addr. addr[0] &= value
132 * Atomic Bitwise or a value from the value at addr. addr[0] |= value
142 * Atomic Bitwise or a value from the value at addr. addr[0] |= value
153 * Atomic Bitwise xor a value from the value at addr. addr[0] ^= value
163 * Atomic Bitwise xor a value from the value at addr. addr[0] ^= value
174 * Atomic Set the value at addr to the min of addr and value
185 * Atomic Set the value at addr to the min of addr and value
197 * Atomic Set the value at addr to the max of addr and value
208 * Atomic Set the value at addr to the max of addr and value