Searched defs:p_atomic_cmpxchg (Results 1 – 2 of 2) sorted by relevance
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_atomic.h | 72 p_atomic_cmpxchg(int32_t *v, int32_t old, int32_t _new) in p_atomic_cmpxchg() function 119 p_atomic_cmpxchg(int32_t *v, int32_t old, int32_t _new) in p_atomic_cmpxchg() function 164 p_atomic_cmpxchg(int32_t *v, int32_t old, int32_t _new) in p_atomic_cmpxchg() function 189 #define p_atomic_cmpxchg(_v, old, _new) (*(_v) == old ? *(_v) = (_new) : *(_v)) macro 240 p_atomic_cmpxchg(int32_t *v, int32_t old, int32_t _new) in p_atomic_cmpxchg() function 298 p_atomic_cmpxchg(int32_t *v, int32_t old, int32_t _new) in p_atomic_cmpxchg() function 333 #define p_atomic_cmpxchg(_v, _old, _new) \ macro
|
/external/mesa3d/src/util/ |
D | u_atomic.h | 71 #define p_atomic_cmpxchg(v, old, _new) \ macro 93 #define p_atomic_cmpxchg(_v, _old, _new) (*(_v) == (_old) ? (*(_v) = (_new), (_old)) : *(_v)) macro 152 #define p_atomic_cmpxchg(_v, _old, _new) (\ macro 213 #define p_atomic_cmpxchg(v, old, _new) ((__typeof(*v)) \ macro
|