Lines Matching refs:old
872 atomic_cmpxchg_acquire(atomic_t *v, int old, int new) in atomic_cmpxchg_acquire() argument
874 int ret = atomic_cmpxchg_relaxed(v, old, new); in atomic_cmpxchg_acquire()
883 atomic_cmpxchg_release(atomic_t *v, int old, int new) in atomic_cmpxchg_release() argument
886 return atomic_cmpxchg_relaxed(v, old, new); in atomic_cmpxchg_release()
893 atomic_cmpxchg(atomic_t *v, int old, int new) in atomic_cmpxchg() argument
897 ret = atomic_cmpxchg_relaxed(v, old, new); in atomic_cmpxchg()
915 atomic_try_cmpxchg(atomic_t *v, int *old, int new) in atomic_try_cmpxchg() argument
917 int r, o = *old; in atomic_try_cmpxchg()
920 *old = r; in atomic_try_cmpxchg()
928 atomic_try_cmpxchg_acquire(atomic_t *v, int *old, int new) in atomic_try_cmpxchg_acquire() argument
930 int r, o = *old; in atomic_try_cmpxchg_acquire()
933 *old = r; in atomic_try_cmpxchg_acquire()
941 atomic_try_cmpxchg_release(atomic_t *v, int *old, int new) in atomic_try_cmpxchg_release() argument
943 int r, o = *old; in atomic_try_cmpxchg_release()
946 *old = r; in atomic_try_cmpxchg_release()
954 atomic_try_cmpxchg_relaxed(atomic_t *v, int *old, int new) in atomic_try_cmpxchg_relaxed() argument
956 int r, o = *old; in atomic_try_cmpxchg_relaxed()
959 *old = r; in atomic_try_cmpxchg_relaxed()
969 atomic_try_cmpxchg_acquire(atomic_t *v, int *old, int new) in atomic_try_cmpxchg_acquire() argument
971 bool ret = atomic_try_cmpxchg_relaxed(v, old, new); in atomic_try_cmpxchg_acquire()
980 atomic_try_cmpxchg_release(atomic_t *v, int *old, int new) in atomic_try_cmpxchg_release() argument
983 return atomic_try_cmpxchg_relaxed(v, old, new); in atomic_try_cmpxchg_release()
990 atomic_try_cmpxchg(atomic_t *v, int *old, int new) in atomic_try_cmpxchg() argument
994 ret = atomic_try_cmpxchg_relaxed(v, old, new); in atomic_try_cmpxchg()
1982 atomic64_cmpxchg_acquire(atomic64_t *v, s64 old, s64 new) in atomic64_cmpxchg_acquire() argument
1984 s64 ret = atomic64_cmpxchg_relaxed(v, old, new); in atomic64_cmpxchg_acquire()
1993 atomic64_cmpxchg_release(atomic64_t *v, s64 old, s64 new) in atomic64_cmpxchg_release() argument
1996 return atomic64_cmpxchg_relaxed(v, old, new); in atomic64_cmpxchg_release()
2003 atomic64_cmpxchg(atomic64_t *v, s64 old, s64 new) in atomic64_cmpxchg() argument
2007 ret = atomic64_cmpxchg_relaxed(v, old, new); in atomic64_cmpxchg()
2025 atomic64_try_cmpxchg(atomic64_t *v, s64 *old, s64 new) in atomic64_try_cmpxchg() argument
2027 s64 r, o = *old; in atomic64_try_cmpxchg()
2030 *old = r; in atomic64_try_cmpxchg()
2038 atomic64_try_cmpxchg_acquire(atomic64_t *v, s64 *old, s64 new) in atomic64_try_cmpxchg_acquire() argument
2040 s64 r, o = *old; in atomic64_try_cmpxchg_acquire()
2043 *old = r; in atomic64_try_cmpxchg_acquire()
2051 atomic64_try_cmpxchg_release(atomic64_t *v, s64 *old, s64 new) in atomic64_try_cmpxchg_release() argument
2053 s64 r, o = *old; in atomic64_try_cmpxchg_release()
2056 *old = r; in atomic64_try_cmpxchg_release()
2064 atomic64_try_cmpxchg_relaxed(atomic64_t *v, s64 *old, s64 new) in atomic64_try_cmpxchg_relaxed() argument
2066 s64 r, o = *old; in atomic64_try_cmpxchg_relaxed()
2069 *old = r; in atomic64_try_cmpxchg_relaxed()
2079 atomic64_try_cmpxchg_acquire(atomic64_t *v, s64 *old, s64 new) in atomic64_try_cmpxchg_acquire() argument
2081 bool ret = atomic64_try_cmpxchg_relaxed(v, old, new); in atomic64_try_cmpxchg_acquire()
2090 atomic64_try_cmpxchg_release(atomic64_t *v, s64 *old, s64 new) in atomic64_try_cmpxchg_release() argument
2093 return atomic64_try_cmpxchg_relaxed(v, old, new); in atomic64_try_cmpxchg_release()
2100 atomic64_try_cmpxchg(atomic64_t *v, s64 *old, s64 new) in atomic64_try_cmpxchg() argument
2104 ret = atomic64_try_cmpxchg_relaxed(v, old, new); in atomic64_try_cmpxchg()