Lines Matching refs:rhs
45 friend ParticleTime operator -(const ParticleTime& rhs);
163 …bool operator ==(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
164 …bool operator !=(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
165 …bool operator >=(const ParticleTime& rhs) const { return this->m_ParticleTime >= rhs.m_ParticleTim…
166 …bool operator <=(const ParticleTime& rhs) const { return this->m_ParticleTime <= rhs.m_ParticleTim…
167 …bool operator >(const ParticleTime& rhs) const { return this->m_ParticleTime > rhs.m_ParticleTime;…
168 …bool operator <(const ParticleTime& rhs) const { return this->m_ParticleTime < rhs.m_ParticleTime;…
170 bool operator ==(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
171 bool operator !=(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
172 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= S32ToParticleTime(rhs); }
173 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= S32ToParticleTime(rhs); }
174 bool operator >(s32 rhs) const { return this->m_ParticleTime > S32ToParticleTime(rhs); }
175 bool operator <(s32 rhs) const { return this->m_ParticleTime < S32ToParticleTime(rhs); }
222 NW_FORCE_INLINE ParticleTime operator -(const ParticleTime& rhs)
225 result.m_ParticleTime = -rhs.m_ParticleTime;
236 friend ParticleTime operator -(const ParticleTime& rhs);
343 …bool operator ==(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
344 …bool operator !=(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
345 …bool operator >=(const ParticleTime& rhs) const { return this->m_ParticleTime >= rhs.m_ParticleTim…
346 …bool operator <=(const ParticleTime& rhs) const { return this->m_ParticleTime <= rhs.m_ParticleTim…
347 …bool operator >(const ParticleTime& rhs) const { return this->m_ParticleTime > rhs.m_ParticleTime;…
348 …bool operator <(const ParticleTime& rhs) const { return this->m_ParticleTime < rhs.m_ParticleTime;…
350 bool operator ==(s32 rhs) const { return this->m_ParticleTime == rhs; }
351 bool operator !=(s32 rhs) const { return this->m_ParticleTime == rhs; }
352 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= rhs; }
353 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= rhs; }
354 bool operator >(s32 rhs) const { return this->m_ParticleTime > rhs; }
355 bool operator <(s32 rhs) const { return this->m_ParticleTime < rhs; }
384 NW_FORCE_INLINE ParticleTime operator -(const ParticleTime& rhs)
386 return ParticleTime(-rhs.m_ParticleTime);