Searched refs:atomic_xor (Results 1 – 8 of 8) sorted by relevance
46 atomic_val_t atomic_xor(atomic_t *target, atomic_val_t value);
64 __syscall atomic_val_t atomic_xor(atomic_t *target, atomic_val_t value);
98 static inline atomic_val_t atomic_xor(atomic_t *target, atomic_val_t value) in atomic_xor() function
440 atomic_val_t atomic_xor(atomic_t *target, atomic_val_t value);
198 #define NRFX_ATOMIC_FETCH_XOR(p_data, value) atomic_xor(p_data, value)
132 static ALWAYS_INLINE atomic_val_t atomic_xor(atomic_t *target, in atomic_xor() function
344 ATOMIC_SYSCALL_HANDLER_TARGET_VALUE(atomic_xor);
207 zassert_true((atomic_xor(&target, value) == 0xFF00), "atomic_xor"); in ZTEST_USER()