Lines Matching defs:new
411 atomic_long_cmpxchg(atomic_long_t *v, long old, long new)
413 return atomic64_cmpxchg(v, old, new);
417 atomic_long_cmpxchg_acquire(atomic_long_t *v, long old, long new)
419 return atomic64_cmpxchg_acquire(v, old, new);
423 atomic_long_cmpxchg_release(atomic_long_t *v, long old, long new)
425 return atomic64_cmpxchg_release(v, old, new);
429 atomic_long_cmpxchg_relaxed(atomic_long_t *v, long old, long new)
431 return atomic64_cmpxchg_relaxed(v, old, new);
435 atomic_long_try_cmpxchg(atomic_long_t *v, long *old, long new)
437 return atomic64_try_cmpxchg(v, (s64 *)old, new);
441 atomic_long_try_cmpxchg_acquire(atomic_long_t *v, long *old, long new)
443 return atomic64_try_cmpxchg_acquire(v, (s64 *)old, new);
447 atomic_long_try_cmpxchg_release(atomic_long_t *v, long *old, long new)
449 return atomic64_try_cmpxchg_release(v, (s64 *)old, new);
453 atomic_long_try_cmpxchg_relaxed(atomic_long_t *v, long *old, long new)
455 return atomic64_try_cmpxchg_relaxed(v, (s64 *)old, new);
905 atomic_long_cmpxchg(atomic_long_t *v, long old, long new)
907 return atomic_cmpxchg(v, old, new);
911 atomic_long_cmpxchg_acquire(atomic_long_t *v, long old, long new)
913 return atomic_cmpxchg_acquire(v, old, new);
917 atomic_long_cmpxchg_release(atomic_long_t *v, long old, long new)
919 return atomic_cmpxchg_release(v, old, new);
923 atomic_long_cmpxchg_relaxed(atomic_long_t *v, long old, long new)
925 return atomic_cmpxchg_relaxed(v, old, new);
929 atomic_long_try_cmpxchg(atomic_long_t *v, long *old, long new)
931 return atomic_try_cmpxchg(v, (int *)old, new);
935 atomic_long_try_cmpxchg_acquire(atomic_long_t *v, long *old, long new)
937 return atomic_try_cmpxchg_acquire(v, (int *)old, new);
941 atomic_long_try_cmpxchg_release(atomic_long_t *v, long *old, long new)
943 return atomic_try_cmpxchg_release(v, (int *)old, new);
947 atomic_long_try_cmpxchg_relaxed(atomic_long_t *v, long *old, long new)
949 return atomic_try_cmpxchg_relaxed(v, (int *)old, new);