• Home
  • Raw
  • Download

Lines Matching refs:new

410 atomic_long_cmpxchg(atomic_long_t *v, long old, long new)  in atomic_long_cmpxchg()  argument
412 return atomic64_cmpxchg(v, old, new); in atomic_long_cmpxchg()
416 atomic_long_cmpxchg_acquire(atomic_long_t *v, long old, long new) in atomic_long_cmpxchg_acquire() argument
418 return atomic64_cmpxchg_acquire(v, old, new); in atomic_long_cmpxchg_acquire()
422 atomic_long_cmpxchg_release(atomic_long_t *v, long old, long new) in atomic_long_cmpxchg_release() argument
424 return atomic64_cmpxchg_release(v, old, new); in atomic_long_cmpxchg_release()
428 atomic_long_cmpxchg_relaxed(atomic_long_t *v, long old, long new) in atomic_long_cmpxchg_relaxed() argument
430 return atomic64_cmpxchg_relaxed(v, old, new); in atomic_long_cmpxchg_relaxed()
434 atomic_long_try_cmpxchg(atomic_long_t *v, long *old, long new) in atomic_long_try_cmpxchg() argument
436 return atomic64_try_cmpxchg(v, (s64 *)old, new); in atomic_long_try_cmpxchg()
440 atomic_long_try_cmpxchg_acquire(atomic_long_t *v, long *old, long new) in atomic_long_try_cmpxchg_acquire() argument
442 return atomic64_try_cmpxchg_acquire(v, (s64 *)old, new); in atomic_long_try_cmpxchg_acquire()
446 atomic_long_try_cmpxchg_release(atomic_long_t *v, long *old, long new) in atomic_long_try_cmpxchg_release() argument
448 return atomic64_try_cmpxchg_release(v, (s64 *)old, new); in atomic_long_try_cmpxchg_release()
452 atomic_long_try_cmpxchg_relaxed(atomic_long_t *v, long *old, long new) in atomic_long_try_cmpxchg_relaxed() argument
454 return atomic64_try_cmpxchg_relaxed(v, (s64 *)old, new); in atomic_long_try_cmpxchg_relaxed()
904 atomic_long_cmpxchg(atomic_long_t *v, long old, long new) in atomic_long_cmpxchg() argument
906 return atomic_cmpxchg(v, old, new); in atomic_long_cmpxchg()
910 atomic_long_cmpxchg_acquire(atomic_long_t *v, long old, long new) in atomic_long_cmpxchg_acquire() argument
912 return atomic_cmpxchg_acquire(v, old, new); in atomic_long_cmpxchg_acquire()
916 atomic_long_cmpxchg_release(atomic_long_t *v, long old, long new) in atomic_long_cmpxchg_release() argument
918 return atomic_cmpxchg_release(v, old, new); in atomic_long_cmpxchg_release()
922 atomic_long_cmpxchg_relaxed(atomic_long_t *v, long old, long new) in atomic_long_cmpxchg_relaxed() argument
924 return atomic_cmpxchg_relaxed(v, old, new); in atomic_long_cmpxchg_relaxed()
928 atomic_long_try_cmpxchg(atomic_long_t *v, long *old, long new) in atomic_long_try_cmpxchg() argument
930 return atomic_try_cmpxchg(v, (int *)old, new); in atomic_long_try_cmpxchg()
934 atomic_long_try_cmpxchg_acquire(atomic_long_t *v, long *old, long new) in atomic_long_try_cmpxchg_acquire() argument
936 return atomic_try_cmpxchg_acquire(v, (int *)old, new); in atomic_long_try_cmpxchg_acquire()
940 atomic_long_try_cmpxchg_release(atomic_long_t *v, long *old, long new) in atomic_long_try_cmpxchg_release() argument
942 return atomic_try_cmpxchg_release(v, (int *)old, new); in atomic_long_try_cmpxchg_release()
946 atomic_long_try_cmpxchg_relaxed(atomic_long_t *v, long *old, long new) in atomic_long_try_cmpxchg_relaxed() argument
948 return atomic_try_cmpxchg_relaxed(v, (int *)old, new); in atomic_long_try_cmpxchg_relaxed()