Lines Matching refs:rhs
32 inline Atomic32Impl& operator=(const Atomic32Impl& rhs);
33 inline Atomic32Impl& operator=(WebRtc_Word32 rhs);
34 inline WebRtc_Word32 operator+=(WebRtc_Word32 rhs);
35 inline WebRtc_Word32 operator-=(WebRtc_Word32 rhs);
81 inline Atomic32Impl& Atomic32Impl::operator=(const Atomic32Impl& rhs)
83 *_value = *rhs._value;
87 inline Atomic32Impl& Atomic32Impl::operator=(WebRtc_Word32 rhs)
89 *_value = rhs;
93 inline WebRtc_Word32 Atomic32Impl::operator+=(WebRtc_Word32 rhs)
95 WebRtc_Word32 returnValue = __sync_fetch_and_add(_value,rhs);
96 returnValue += rhs;
100 inline WebRtc_Word32 Atomic32Impl::operator-=(WebRtc_Word32 rhs)
102 WebRtc_Word32 returnValue = __sync_fetch_and_sub(_value,rhs);
103 returnValue -= rhs;