Lines Matching refs:__memory
126 atomic_swap_32(volatile uint32_t *__memory, uint32_t __value) in atomic_swap_32() argument
131 : "+q" (__value), "+m" (*__memory)); in atomic_swap_32()
143 : "=&r" (__tmp1), "=&r" (__tmp2), "=m" (*__memory) in atomic_swap_32()
144 : "r" (__memory), "r" (__value) in atomic_swap_32()
153 atomic_cas_32(volatile uint32_t *__memory, uint32_t __cmp, uint32_t __newvalue) in atomic_cas_32() argument
159 : "=m" (*__memory), "=a" (__oldvalue) in atomic_cas_32()
164 : "=m" (*__memory), "=&r" (__oldvalue) in atomic_cas_32()
165 : "r" (__memory), "r" (__cmp), "1" (__newvalue)); in atomic_cas_32()
173 atomic_inc_32(volatile uint32_t *__memory) in atomic_inc_32() argument
178 : "+m" (*__memory)); in atomic_inc_32()
189 : "=&r" (__tmp1), "=&r" (__tmp2), "=m" (*__memory) in atomic_inc_32()
190 : "r" (__memory) in atomic_inc_32()
198 atomic_dec_32(volatile uint32_t *__memory) in atomic_dec_32() argument
203 : "+m" (*__memory)); in atomic_dec_32()
214 : "=&r" (__tmp1), "=&r" (__tmp2), "=m" (*__memory) in atomic_dec_32()
215 : "r" (__memory) in atomic_dec_32()
223 atomic_and_32(volatile uint32_t *__memory, uint32_t __bits) in atomic_and_32() argument
228 : "+m" (*__memory) in atomic_and_32()
240 : "=&r" (__tmp1), "=&r" (__tmp2), "=m" (*__memory) in atomic_and_32()
241 : "r" (__memory), "r" (__bits) in atomic_and_32()
249 atomic_or_32(volatile uint32_t *__memory, uint32_t __bits) in atomic_or_32() argument
254 : "+m" (*__memory) in atomic_or_32()
266 : "=&r" (__tmp1), "=&r" (__tmp2), "=m" (*__memory) in atomic_or_32()
267 : "r" (__memory), "r" (__bits) in atomic_or_32()