Lines Matching refs:new

375 rust_helper_atomic_xchg(atomic_t *v, int new)
377 return atomic_xchg(v, new);
381 rust_helper_atomic_xchg_acquire(atomic_t *v, int new)
383 return atomic_xchg_acquire(v, new);
387 rust_helper_atomic_xchg_release(atomic_t *v, int new)
389 return atomic_xchg_release(v, new);
393 rust_helper_atomic_xchg_relaxed(atomic_t *v, int new)
395 return atomic_xchg_relaxed(v, new);
399 rust_helper_atomic_cmpxchg(atomic_t *v, int old, int new)
401 return atomic_cmpxchg(v, old, new);
405 rust_helper_atomic_cmpxchg_acquire(atomic_t *v, int old, int new)
407 return atomic_cmpxchg_acquire(v, old, new);
411 rust_helper_atomic_cmpxchg_release(atomic_t *v, int old, int new)
413 return atomic_cmpxchg_release(v, old, new);
417 rust_helper_atomic_cmpxchg_relaxed(atomic_t *v, int old, int new)
419 return atomic_cmpxchg_relaxed(v, old, new);
423 rust_helper_atomic_try_cmpxchg(atomic_t *v, int *old, int new)
425 return atomic_try_cmpxchg(v, old, new);
429 rust_helper_atomic_try_cmpxchg_acquire(atomic_t *v, int *old, int new)
431 return atomic_try_cmpxchg_acquire(v, old, new);
435 rust_helper_atomic_try_cmpxchg_release(atomic_t *v, int *old, int new)
437 return atomic_try_cmpxchg_release(v, old, new);
441 rust_helper_atomic_try_cmpxchg_relaxed(atomic_t *v, int *old, int new)
443 return atomic_try_cmpxchg_relaxed(v, old, new);
885 rust_helper_atomic64_xchg(atomic64_t *v, s64 new)
887 return atomic64_xchg(v, new);
891 rust_helper_atomic64_xchg_acquire(atomic64_t *v, s64 new)
893 return atomic64_xchg_acquire(v, new);
897 rust_helper_atomic64_xchg_release(atomic64_t *v, s64 new)
899 return atomic64_xchg_release(v, new);
903 rust_helper_atomic64_xchg_relaxed(atomic64_t *v, s64 new)
905 return atomic64_xchg_relaxed(v, new);
909 rust_helper_atomic64_cmpxchg(atomic64_t *v, s64 old, s64 new)
911 return atomic64_cmpxchg(v, old, new);
915 rust_helper_atomic64_cmpxchg_acquire(atomic64_t *v, s64 old, s64 new)
917 return atomic64_cmpxchg_acquire(v, old, new);
921 rust_helper_atomic64_cmpxchg_release(atomic64_t *v, s64 old, s64 new)
923 return atomic64_cmpxchg_release(v, old, new);
927 rust_helper_atomic64_cmpxchg_relaxed(atomic64_t *v, s64 old, s64 new)
929 return atomic64_cmpxchg_relaxed(v, old, new);
933 rust_helper_atomic64_try_cmpxchg(atomic64_t *v, s64 *old, s64 new)
935 return atomic64_try_cmpxchg(v, old, new);
939 rust_helper_atomic64_try_cmpxchg_acquire(atomic64_t *v, s64 *old, s64 new)
941 return atomic64_try_cmpxchg_acquire(v, old, new);
945 rust_helper_atomic64_try_cmpxchg_release(atomic64_t *v, s64 *old, s64 new)
947 return atomic64_try_cmpxchg_release(v, old, new);
951 rust_helper_atomic64_try_cmpxchg_relaxed(atomic64_t *v, s64 *old, s64 new)
953 return atomic64_try_cmpxchg_relaxed(v, old, new);