Lines Matching full:i
32 rust_helper_atomic_set(atomic_t *v, int i) in rust_helper_atomic_set() argument
34 atomic_set(v, i); in rust_helper_atomic_set()
38 rust_helper_atomic_set_release(atomic_t *v, int i) in rust_helper_atomic_set_release() argument
40 atomic_set_release(v, i); in rust_helper_atomic_set_release()
44 rust_helper_atomic_add(int i, atomic_t *v) in rust_helper_atomic_add() argument
46 atomic_add(i, v); in rust_helper_atomic_add()
50 rust_helper_atomic_add_return(int i, atomic_t *v) in rust_helper_atomic_add_return() argument
52 return atomic_add_return(i, v); in rust_helper_atomic_add_return()
56 rust_helper_atomic_add_return_acquire(int i, atomic_t *v) in rust_helper_atomic_add_return_acquire() argument
58 return atomic_add_return_acquire(i, v); in rust_helper_atomic_add_return_acquire()
62 rust_helper_atomic_add_return_release(int i, atomic_t *v) in rust_helper_atomic_add_return_release() argument
64 return atomic_add_return_release(i, v); in rust_helper_atomic_add_return_release()
68 rust_helper_atomic_add_return_relaxed(int i, atomic_t *v) in rust_helper_atomic_add_return_relaxed() argument
70 return atomic_add_return_relaxed(i, v); in rust_helper_atomic_add_return_relaxed()
74 rust_helper_atomic_fetch_add(int i, atomic_t *v) in rust_helper_atomic_fetch_add() argument
76 return atomic_fetch_add(i, v); in rust_helper_atomic_fetch_add()
80 rust_helper_atomic_fetch_add_acquire(int i, atomic_t *v) in rust_helper_atomic_fetch_add_acquire() argument
82 return atomic_fetch_add_acquire(i, v); in rust_helper_atomic_fetch_add_acquire()
86 rust_helper_atomic_fetch_add_release(int i, atomic_t *v) in rust_helper_atomic_fetch_add_release() argument
88 return atomic_fetch_add_release(i, v); in rust_helper_atomic_fetch_add_release()
92 rust_helper_atomic_fetch_add_relaxed(int i, atomic_t *v) in rust_helper_atomic_fetch_add_relaxed() argument
94 return atomic_fetch_add_relaxed(i, v); in rust_helper_atomic_fetch_add_relaxed()
98 rust_helper_atomic_sub(int i, atomic_t *v) in rust_helper_atomic_sub() argument
100 atomic_sub(i, v); in rust_helper_atomic_sub()
104 rust_helper_atomic_sub_return(int i, atomic_t *v) in rust_helper_atomic_sub_return() argument
106 return atomic_sub_return(i, v); in rust_helper_atomic_sub_return()
110 rust_helper_atomic_sub_return_acquire(int i, atomic_t *v) in rust_helper_atomic_sub_return_acquire() argument
112 return atomic_sub_return_acquire(i, v); in rust_helper_atomic_sub_return_acquire()
116 rust_helper_atomic_sub_return_release(int i, atomic_t *v) in rust_helper_atomic_sub_return_release() argument
118 return atomic_sub_return_release(i, v); in rust_helper_atomic_sub_return_release()
122 rust_helper_atomic_sub_return_relaxed(int i, atomic_t *v) in rust_helper_atomic_sub_return_relaxed() argument
124 return atomic_sub_return_relaxed(i, v); in rust_helper_atomic_sub_return_relaxed()
128 rust_helper_atomic_fetch_sub(int i, atomic_t *v) in rust_helper_atomic_fetch_sub() argument
130 return atomic_fetch_sub(i, v); in rust_helper_atomic_fetch_sub()
134 rust_helper_atomic_fetch_sub_acquire(int i, atomic_t *v) in rust_helper_atomic_fetch_sub_acquire() argument
136 return atomic_fetch_sub_acquire(i, v); in rust_helper_atomic_fetch_sub_acquire()
140 rust_helper_atomic_fetch_sub_release(int i, atomic_t *v) in rust_helper_atomic_fetch_sub_release() argument
142 return atomic_fetch_sub_release(i, v); in rust_helper_atomic_fetch_sub_release()
146 rust_helper_atomic_fetch_sub_relaxed(int i, atomic_t *v) in rust_helper_atomic_fetch_sub_relaxed() argument
148 return atomic_fetch_sub_relaxed(i, v); in rust_helper_atomic_fetch_sub_relaxed()
260 rust_helper_atomic_and(int i, atomic_t *v) in rust_helper_atomic_and() argument
262 atomic_and(i, v); in rust_helper_atomic_and()
266 rust_helper_atomic_fetch_and(int i, atomic_t *v) in rust_helper_atomic_fetch_and() argument
268 return atomic_fetch_and(i, v); in rust_helper_atomic_fetch_and()
272 rust_helper_atomic_fetch_and_acquire(int i, atomic_t *v) in rust_helper_atomic_fetch_and_acquire() argument
274 return atomic_fetch_and_acquire(i, v); in rust_helper_atomic_fetch_and_acquire()
278 rust_helper_atomic_fetch_and_release(int i, atomic_t *v) in rust_helper_atomic_fetch_and_release() argument
280 return atomic_fetch_and_release(i, v); in rust_helper_atomic_fetch_and_release()
284 rust_helper_atomic_fetch_and_relaxed(int i, atomic_t *v) in rust_helper_atomic_fetch_and_relaxed() argument
286 return atomic_fetch_and_relaxed(i, v); in rust_helper_atomic_fetch_and_relaxed()
290 rust_helper_atomic_andnot(int i, atomic_t *v) in rust_helper_atomic_andnot() argument
292 atomic_andnot(i, v); in rust_helper_atomic_andnot()
296 rust_helper_atomic_fetch_andnot(int i, atomic_t *v) in rust_helper_atomic_fetch_andnot() argument
298 return atomic_fetch_andnot(i, v); in rust_helper_atomic_fetch_andnot()
302 rust_helper_atomic_fetch_andnot_acquire(int i, atomic_t *v) in rust_helper_atomic_fetch_andnot_acquire() argument
304 return atomic_fetch_andnot_acquire(i, v); in rust_helper_atomic_fetch_andnot_acquire()
308 rust_helper_atomic_fetch_andnot_release(int i, atomic_t *v) in rust_helper_atomic_fetch_andnot_release() argument
310 return atomic_fetch_andnot_release(i, v); in rust_helper_atomic_fetch_andnot_release()
314 rust_helper_atomic_fetch_andnot_relaxed(int i, atomic_t *v) in rust_helper_atomic_fetch_andnot_relaxed() argument
316 return atomic_fetch_andnot_relaxed(i, v); in rust_helper_atomic_fetch_andnot_relaxed()
320 rust_helper_atomic_or(int i, atomic_t *v) in rust_helper_atomic_or() argument
322 atomic_or(i, v); in rust_helper_atomic_or()
326 rust_helper_atomic_fetch_or(int i, atomic_t *v) in rust_helper_atomic_fetch_or() argument
328 return atomic_fetch_or(i, v); in rust_helper_atomic_fetch_or()
332 rust_helper_atomic_fetch_or_acquire(int i, atomic_t *v) in rust_helper_atomic_fetch_or_acquire() argument
334 return atomic_fetch_or_acquire(i, v); in rust_helper_atomic_fetch_or_acquire()
338 rust_helper_atomic_fetch_or_release(int i, atomic_t *v) in rust_helper_atomic_fetch_or_release() argument
340 return atomic_fetch_or_release(i, v); in rust_helper_atomic_fetch_or_release()
344 rust_helper_atomic_fetch_or_relaxed(int i, atomic_t *v) in rust_helper_atomic_fetch_or_relaxed() argument
346 return atomic_fetch_or_relaxed(i, v); in rust_helper_atomic_fetch_or_relaxed()
350 rust_helper_atomic_xor(int i, atomic_t *v) in rust_helper_atomic_xor() argument
352 atomic_xor(i, v); in rust_helper_atomic_xor()
356 rust_helper_atomic_fetch_xor(int i, atomic_t *v) in rust_helper_atomic_fetch_xor() argument
358 return atomic_fetch_xor(i, v); in rust_helper_atomic_fetch_xor()
362 rust_helper_atomic_fetch_xor_acquire(int i, atomic_t *v) in rust_helper_atomic_fetch_xor_acquire() argument
364 return atomic_fetch_xor_acquire(i, v); in rust_helper_atomic_fetch_xor_acquire()
368 rust_helper_atomic_fetch_xor_release(int i, atomic_t *v) in rust_helper_atomic_fetch_xor_release() argument
370 return atomic_fetch_xor_release(i, v); in rust_helper_atomic_fetch_xor_release()
374 rust_helper_atomic_fetch_xor_relaxed(int i, atomic_t *v) in rust_helper_atomic_fetch_xor_relaxed() argument
376 return atomic_fetch_xor_relaxed(i, v); in rust_helper_atomic_fetch_xor_relaxed()
452 rust_helper_atomic_sub_and_test(int i, atomic_t *v) in rust_helper_atomic_sub_and_test() argument
454 return atomic_sub_and_test(i, v); in rust_helper_atomic_sub_and_test()
470 rust_helper_atomic_add_negative(int i, atomic_t *v) in rust_helper_atomic_add_negative() argument
472 return atomic_add_negative(i, v); in rust_helper_atomic_add_negative()
476 rust_helper_atomic_add_negative_acquire(int i, atomic_t *v) in rust_helper_atomic_add_negative_acquire() argument
478 return atomic_add_negative_acquire(i, v); in rust_helper_atomic_add_negative_acquire()
482 rust_helper_atomic_add_negative_release(int i, atomic_t *v) in rust_helper_atomic_add_negative_release() argument
484 return atomic_add_negative_release(i, v); in rust_helper_atomic_add_negative_release()
488 rust_helper_atomic_add_negative_relaxed(int i, atomic_t *v) in rust_helper_atomic_add_negative_relaxed() argument
490 return atomic_add_negative_relaxed(i, v); in rust_helper_atomic_add_negative_relaxed()
542 rust_helper_atomic64_set(atomic64_t *v, s64 i) in rust_helper_atomic64_set() argument
544 atomic64_set(v, i); in rust_helper_atomic64_set()
548 rust_helper_atomic64_set_release(atomic64_t *v, s64 i) in rust_helper_atomic64_set_release() argument
550 atomic64_set_release(v, i); in rust_helper_atomic64_set_release()
554 rust_helper_atomic64_add(s64 i, atomic64_t *v) in rust_helper_atomic64_add() argument
556 atomic64_add(i, v); in rust_helper_atomic64_add()
560 rust_helper_atomic64_add_return(s64 i, atomic64_t *v) in rust_helper_atomic64_add_return() argument
562 return atomic64_add_return(i, v); in rust_helper_atomic64_add_return()
566 rust_helper_atomic64_add_return_acquire(s64 i, atomic64_t *v) in rust_helper_atomic64_add_return_acquire() argument
568 return atomic64_add_return_acquire(i, v); in rust_helper_atomic64_add_return_acquire()
572 rust_helper_atomic64_add_return_release(s64 i, atomic64_t *v) in rust_helper_atomic64_add_return_release() argument
574 return atomic64_add_return_release(i, v); in rust_helper_atomic64_add_return_release()
578 rust_helper_atomic64_add_return_relaxed(s64 i, atomic64_t *v) in rust_helper_atomic64_add_return_relaxed() argument
580 return atomic64_add_return_relaxed(i, v); in rust_helper_atomic64_add_return_relaxed()
584 rust_helper_atomic64_fetch_add(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_add() argument
586 return atomic64_fetch_add(i, v); in rust_helper_atomic64_fetch_add()
590 rust_helper_atomic64_fetch_add_acquire(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_add_acquire() argument
592 return atomic64_fetch_add_acquire(i, v); in rust_helper_atomic64_fetch_add_acquire()
596 rust_helper_atomic64_fetch_add_release(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_add_release() argument
598 return atomic64_fetch_add_release(i, v); in rust_helper_atomic64_fetch_add_release()
602 rust_helper_atomic64_fetch_add_relaxed(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_add_relaxed() argument
604 return atomic64_fetch_add_relaxed(i, v); in rust_helper_atomic64_fetch_add_relaxed()
608 rust_helper_atomic64_sub(s64 i, atomic64_t *v) in rust_helper_atomic64_sub() argument
610 atomic64_sub(i, v); in rust_helper_atomic64_sub()
614 rust_helper_atomic64_sub_return(s64 i, atomic64_t *v) in rust_helper_atomic64_sub_return() argument
616 return atomic64_sub_return(i, v); in rust_helper_atomic64_sub_return()
620 rust_helper_atomic64_sub_return_acquire(s64 i, atomic64_t *v) in rust_helper_atomic64_sub_return_acquire() argument
622 return atomic64_sub_return_acquire(i, v); in rust_helper_atomic64_sub_return_acquire()
626 rust_helper_atomic64_sub_return_release(s64 i, atomic64_t *v) in rust_helper_atomic64_sub_return_release() argument
628 return atomic64_sub_return_release(i, v); in rust_helper_atomic64_sub_return_release()
632 rust_helper_atomic64_sub_return_relaxed(s64 i, atomic64_t *v) in rust_helper_atomic64_sub_return_relaxed() argument
634 return atomic64_sub_return_relaxed(i, v); in rust_helper_atomic64_sub_return_relaxed()
638 rust_helper_atomic64_fetch_sub(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_sub() argument
640 return atomic64_fetch_sub(i, v); in rust_helper_atomic64_fetch_sub()
644 rust_helper_atomic64_fetch_sub_acquire(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_sub_acquire() argument
646 return atomic64_fetch_sub_acquire(i, v); in rust_helper_atomic64_fetch_sub_acquire()
650 rust_helper_atomic64_fetch_sub_release(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_sub_release() argument
652 return atomic64_fetch_sub_release(i, v); in rust_helper_atomic64_fetch_sub_release()
656 rust_helper_atomic64_fetch_sub_relaxed(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_sub_relaxed() argument
658 return atomic64_fetch_sub_relaxed(i, v); in rust_helper_atomic64_fetch_sub_relaxed()
770 rust_helper_atomic64_and(s64 i, atomic64_t *v) in rust_helper_atomic64_and() argument
772 atomic64_and(i, v); in rust_helper_atomic64_and()
776 rust_helper_atomic64_fetch_and(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_and() argument
778 return atomic64_fetch_and(i, v); in rust_helper_atomic64_fetch_and()
782 rust_helper_atomic64_fetch_and_acquire(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_and_acquire() argument
784 return atomic64_fetch_and_acquire(i, v); in rust_helper_atomic64_fetch_and_acquire()
788 rust_helper_atomic64_fetch_and_release(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_and_release() argument
790 return atomic64_fetch_and_release(i, v); in rust_helper_atomic64_fetch_and_release()
794 rust_helper_atomic64_fetch_and_relaxed(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_and_relaxed() argument
796 return atomic64_fetch_and_relaxed(i, v); in rust_helper_atomic64_fetch_and_relaxed()
800 rust_helper_atomic64_andnot(s64 i, atomic64_t *v) in rust_helper_atomic64_andnot() argument
802 atomic64_andnot(i, v); in rust_helper_atomic64_andnot()
806 rust_helper_atomic64_fetch_andnot(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_andnot() argument
808 return atomic64_fetch_andnot(i, v); in rust_helper_atomic64_fetch_andnot()
812 rust_helper_atomic64_fetch_andnot_acquire(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_andnot_acquire() argument
814 return atomic64_fetch_andnot_acquire(i, v); in rust_helper_atomic64_fetch_andnot_acquire()
818 rust_helper_atomic64_fetch_andnot_release(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_andnot_release() argument
820 return atomic64_fetch_andnot_release(i, v); in rust_helper_atomic64_fetch_andnot_release()
824 rust_helper_atomic64_fetch_andnot_relaxed(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_andnot_relaxed() argument
826 return atomic64_fetch_andnot_relaxed(i, v); in rust_helper_atomic64_fetch_andnot_relaxed()
830 rust_helper_atomic64_or(s64 i, atomic64_t *v) in rust_helper_atomic64_or() argument
832 atomic64_or(i, v); in rust_helper_atomic64_or()
836 rust_helper_atomic64_fetch_or(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_or() argument
838 return atomic64_fetch_or(i, v); in rust_helper_atomic64_fetch_or()
842 rust_helper_atomic64_fetch_or_acquire(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_or_acquire() argument
844 return atomic64_fetch_or_acquire(i, v); in rust_helper_atomic64_fetch_or_acquire()
848 rust_helper_atomic64_fetch_or_release(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_or_release() argument
850 return atomic64_fetch_or_release(i, v); in rust_helper_atomic64_fetch_or_release()
854 rust_helper_atomic64_fetch_or_relaxed(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_or_relaxed() argument
856 return atomic64_fetch_or_relaxed(i, v); in rust_helper_atomic64_fetch_or_relaxed()
860 rust_helper_atomic64_xor(s64 i, atomic64_t *v) in rust_helper_atomic64_xor() argument
862 atomic64_xor(i, v); in rust_helper_atomic64_xor()
866 rust_helper_atomic64_fetch_xor(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_xor() argument
868 return atomic64_fetch_xor(i, v); in rust_helper_atomic64_fetch_xor()
872 rust_helper_atomic64_fetch_xor_acquire(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_xor_acquire() argument
874 return atomic64_fetch_xor_acquire(i, v); in rust_helper_atomic64_fetch_xor_acquire()
878 rust_helper_atomic64_fetch_xor_release(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_xor_release() argument
880 return atomic64_fetch_xor_release(i, v); in rust_helper_atomic64_fetch_xor_release()
884 rust_helper_atomic64_fetch_xor_relaxed(s64 i, atomic64_t *v) in rust_helper_atomic64_fetch_xor_relaxed() argument
886 return atomic64_fetch_xor_relaxed(i, v); in rust_helper_atomic64_fetch_xor_relaxed()
962 rust_helper_atomic64_sub_and_test(s64 i, atomic64_t *v) in rust_helper_atomic64_sub_and_test() argument
964 return atomic64_sub_and_test(i, v); in rust_helper_atomic64_sub_and_test()
980 rust_helper_atomic64_add_negative(s64 i, atomic64_t *v) in rust_helper_atomic64_add_negative() argument
982 return atomic64_add_negative(i, v); in rust_helper_atomic64_add_negative()
986 rust_helper_atomic64_add_negative_acquire(s64 i, atomic64_t *v) in rust_helper_atomic64_add_negative_acquire() argument
988 return atomic64_add_negative_acquire(i, v); in rust_helper_atomic64_add_negative_acquire()
992 rust_helper_atomic64_add_negative_release(s64 i, atomic64_t *v) in rust_helper_atomic64_add_negative_release() argument
994 return atomic64_add_negative_release(i, v); in rust_helper_atomic64_add_negative_release()
998 rust_helper_atomic64_add_negative_relaxed(s64 i, atomic64_t *v) in rust_helper_atomic64_add_negative_relaxed() argument
1000 return atomic64_add_negative_relaxed(i, v); in rust_helper_atomic64_add_negative_relaxed()