Lines Matching refs:at
6 * You may obtain a copy of the License at
42 * Atomicly adds a value to the value at addr, i.e. *addr += value.
63 * Atomicly performs a bitwise and of two values, storing the result back at addr,
85 * If the value at addr matches compareValue then the newValue is written at addr,
111 * Atomicly subtracts one from the value at addr. This is equivalent to rsAtomicSub(addr, 1).
131 * Atomicly adds one to the value at addr. This is equivalent to rsAtomicAdd(addr, 1).
151 * Atomicly sets the value at addr to the maximum of *addr and value, i.e.
173 * Atomicly sets the value at addr to the minimum of *addr and value, i.e.
195 * Atomicly perform a bitwise or two values, storing the result at addr,
217 * Atomicly subtracts a value from the value at addr, i.e. *addr -= value.
238 * Atomicly performs a bitwise xor of two values, storing the result at addr,