Lines Matching refs:to

10  * Unless required by applicable law or agreed to in writing, software
29 * Note that in RenderScript, your code is likely to be running in separate
33 * modify your algorithm to avoid them altogether.
42 * Atomicly adds a value to the value at addr, i.e. *addr += value.
45 * addr: Address of the value to modify.
46 * value: Amount to add.
48 * Returns: Value of *addr prior to the operation.
67 * addr: Address of the value to modify.
68 * value: Value to and with.
70 * Returns: Value of *addr prior to the operation.
92 * addr: Address of the value to compare and replace if the test passes.
93 * compareValue: Value to test *addr against.
94 * newValue: Value to write if the test passes.
96 * Returns: Value of *addr prior to the operation.
111 * Atomicly subtracts one from the value at addr. This is equivalent to rsAtomicSub(addr, 1).
114 * addr: Address of the value to decrement.
116 * Returns: Value of *addr prior to the operation.
131 * Atomicly adds one to the value at addr. This is equivalent to rsAtomicAdd(addr, 1).
134 * addr: Address of the value to increment.
136 * Returns: Value of *addr prior to the operation.
151 * Atomicly sets the value at addr to the maximum of *addr and value, i.e.
155 * addr: Address of the value to modify.
158 * Returns: Value of *addr prior to the operation.
173 * Atomicly sets the value at addr to the minimum of *addr and value, i.e.
177 * addr: Address of the value to modify.
180 * Returns: Value of *addr prior to the operation.
199 * addr: Address of the value to modify.
200 * value: Value to or with.
202 * Returns: Value of *addr prior to the operation.
220 * addr: Address of the value to modify.
221 * value: Amount to subtract.
223 * Returns: Value of *addr prior to the operation.
242 * addr: Address of the value to modify.
243 * value: Value to xor with.
245 * Returns: Value of *addr prior to the operation.