Lines Matching defs:n
168 #define qatomic_fetch_add(ptr, n) __atomic_fetch_add(ptr, n, __ATOMIC_SEQ_CST)
169 #define qatomic_fetch_sub(ptr, n) __atomic_fetch_sub(ptr, n, __ATOMIC_SEQ_CST)
170 #define qatomic_fetch_and(ptr, n) __atomic_fetch_and(ptr, n, __ATOMIC_SEQ_CST)
171 #define qatomic_fetch_or(ptr, n) __atomic_fetch_or(ptr, n, __ATOMIC_SEQ_CST)
172 #define qatomic_fetch_xor(ptr, n) __atomic_fetch_xor(ptr, n, __ATOMIC_SEQ_CST)
176 #define qatomic_add_fetch(ptr, n) __atomic_add_fetch(ptr, n, __ATOMIC_SEQ_CST)
177 #define qatomic_sub_fetch(ptr, n) __atomic_sub_fetch(ptr, n, __ATOMIC_SEQ_CST)
178 #define qatomic_and_fetch(ptr, n) __atomic_and_fetch(ptr, n, __ATOMIC_SEQ_CST)
179 #define qatomic_or_fetch(ptr, n) __atomic_or_fetch(ptr, n, __ATOMIC_SEQ_CST)
180 #define qatomic_xor_fetch(ptr, n) __atomic_xor_fetch(ptr, n, __ATOMIC_SEQ_CST)
187 #define qatomic_add(ptr, n) \
188 ((void) __atomic_fetch_add(ptr, n, __ATOMIC_SEQ_CST))
189 #define qatomic_sub(ptr, n) \
190 ((void) __atomic_fetch_sub(ptr, n, __ATOMIC_SEQ_CST))
191 #define qatomic_and(ptr, n) \
192 ((void) __atomic_fetch_and(ptr, n, __ATOMIC_SEQ_CST))
193 #define qatomic_or(ptr, n) \
194 ((void) __atomic_fetch_or(ptr, n, __ATOMIC_SEQ_CST))
195 #define qatomic_xor(ptr, n) \
196 ((void) __atomic_fetch_xor(ptr, n, __ATOMIC_SEQ_CST))