Searched refs:Rhs (Results 1 – 2 of 2) sorted by relevance
| /linux/scripts/dtc/ |
| H A D | srcpos.h | 68 #define YYLLOC_DEFAULT(Current, Rhs, N) \ argument 71 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \ 72 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \ 73 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \ 74 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ 75 (Current).file = YYRHSLOC(Rhs, N).file; \ 78 YYRHSLOC(Rhs, 0).last_line; \ 80 YYRHSLOC(Rhs, 0).last_column; \ 81 (Current).file = YYRHSLOC (Rhs, 0).file; \
|
| /linux/rust/kernel/sync/ |
| H A D | atomic.rs | 124 pub unsafe trait AtomicAdd<Rhs = Self>: AtomicType { 126 fn rhs_into_delta(rhs: Rhs) -> <Self::Repr as AtomicImpl>::Delta; in rhs_into_delta() 508 pub fn add<Rhs>(&self, v: Rhs, _: ordering::Relaxed) in add() argument 510 T: AtomicAdd<Rhs>, in add() argument 542 pub fn fetch_add<Rhs, Ordering: ordering::Ordering>(&self, v: Rhs, _: Ordering) -> T in fetch_add() argument 544 T: AtomicAdd<Rhs>, in fetch_add() argument
|