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