Home | History | Annotate | Download | only in source

Lines Matching refs:rhs

31     inline Atomic32Impl& operator=(const Atomic32Impl& rhs);
32 inline Atomic32Impl& operator=(WebRtc_Word32 rhs);
33 inline WebRtc_Word32 operator+=(WebRtc_Word32 rhs);
34 inline WebRtc_Word32 operator-=(WebRtc_Word32 rhs);
79 inline Atomic32Impl& Atomic32Impl::operator=(const Atomic32Impl& rhs)
81 *_value = *rhs._value;
85 inline Atomic32Impl& Atomic32Impl::operator=(WebRtc_Word32 rhs)
87 *_value = rhs;
91 inline WebRtc_Word32 Atomic32Impl::operator+=(WebRtc_Word32 rhs)
93 return OSAtomicAdd32Barrier(rhs,
97 inline WebRtc_Word32 Atomic32Impl::operator-=(WebRtc_Word32 rhs)
99 return OSAtomicAdd32Barrier(-rhs,