Searched refs:ATOMIC_RMW (Results 1 – 1 of 1) sorted by relevance
/hal_rpi_pico-latest/src/rp2_common/pico_atomic/ |
D | atomic.c | 169 #define ATOMIC_RMW(n, type, opname, op) \ macro 187 #define ATOMIC_OPTIMIZED_CASE(n, type) ATOMIC_RMW(n, type, add, +) 192 #define ATOMIC_OPTIMIZED_CASE(n, type) ATOMIC_RMW(n, type, sub, -) 197 #define ATOMIC_OPTIMIZED_CASE(n, type) ATOMIC_RMW(n, type, and, &) 202 #define ATOMIC_OPTIMIZED_CASE(n, type) ATOMIC_RMW(n, type, or, |) 207 #define ATOMIC_OPTIMIZED_CASE(n, type) ATOMIC_RMW(n, type, xor, ^)
|