Lines Matching refs:operand
131 #define atomic_fetch_add(object, operand) \ argument
132 __sync_fetch_and_add(object, operand)
134 #define atomic_fetch_add_explicit(object, operand, order) \ argument
135 atomic_fetch_add(object, operand)
137 #define atomic_fetch_sub(object, operand) \ argument
138 __sync_fetch_and_sub(object, operand)
140 #define atomic_fetch_sub_explicit(object, operand, order) \ argument
141 atomic_fetch_sub(object, operand)
143 #define atomic_fetch_or(object, operand) \ argument
144 __sync_fetch_and_or(object, operand)
146 #define atomic_fetch_or_explicit(object, operand, order) \ argument
147 atomic_fetch_or(object, operand)
149 #define atomic_fetch_xor(object, operand) \ argument
150 __sync_fetch_and_xor(object, operand)
152 #define atomic_fetch_xor_explicit(object, operand, order) \ argument
153 atomic_fetch_xor(object, operand)
155 #define atomic_fetch_and(object, operand) \ argument
156 __sync_fetch_and_and(object, operand)
158 #define atomic_fetch_and_explicit(object, operand, order) \ argument
159 atomic_fetch_and(object, operand)