Lines Matching refs:rhs
119 Tick& operator-=(Tick rhs);
127 Tick operator-(Tick rhs) const;
135 Tick& operator+=(Tick rhs);
143 Tick operator+(Tick rhs) const;
151 Tick& operator+=(fnd::TimeSpan rhs);
159 Tick operator+(fnd::TimeSpan rhs) const;
242 inline Tick& Tick::operator+=(fnd::TimeSpan rhs)
245 rhs.GetNanoSeconds(),
251 inline Tick& Tick::operator-=(Tick rhs) { this->m_Tick -= rhs.m_Tick; return *this; }
252 inline Tick Tick::operator-(Tick rhs) const { Tick ret(*this); return ret -= rhs; }
253 inline Tick& Tick::operator+=(Tick rhs) { this->m_Tick += rhs.m_Tick; return *this; }
254 inline Tick Tick::operator+(Tick rhs) const { Tick ret(*this); return ret += rhs; }
255 inline Tick Tick::operator+(fnd::TimeSpan rhs) const { Tick ret(*this); return ret += rhs; }