• Home
  • Raw
  • Download

Lines Matching refs:at

6  * You may obtain a copy of the License at
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
72 * @param value Amount to add to the value at addr
79 * Atomic add a value to the value at addr. addr[0] += value
82 * @param value Amount to add to the value at addr
90 * Atomic Subtract a value from the value at addr. addr[0] -= value
93 * @param value Amount to subtract from the value at addr
100 * Atomic Subtract a value from the value at addr. addr[0] -= value
103 * @param value Amount to subtract from the value at addr
111 * Atomic Bitwise and a value from the value at addr. addr[0] &= value
114 * @param value Amount to and with the value at addr
121 * Atomic Bitwise and a value from the value at addr. addr[0] &= value
124 * @param value Amount to and with the value at addr
132 * Atomic Bitwise or a value from the value at addr. addr[0] |= value
135 * @param value Amount to or with the value at addr
142 * Atomic Bitwise or a value from the value at addr. addr[0] |= value
145 * @param value Amount to or with the value at addr
153 * Atomic Bitwise xor a value from the value at addr. addr[0] ^= value
156 * @param value Amount to xor with the value at addr
163 * Atomic Bitwise xor a value from the value at addr. addr[0] ^= value
166 * @param value Amount to xor with the value at addr
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
222 * If the value at addr matches compareValue then newValue is written.
236 * If the value at addr matches compareValue then newValue is written.