Lines Matching refs:rhs
43 friend ParticleTime operator -(const ParticleTime& rhs);
147 …bool operator ==(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
148 …bool operator !=(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
149 …bool operator >=(const ParticleTime& rhs) const { return this->m_ParticleTime >= rhs.m_ParticleTim…
150 …bool operator <=(const ParticleTime& rhs) const { return this->m_ParticleTime <= rhs.m_ParticleTim…
151 …bool operator >(const ParticleTime& rhs) const { return this->m_ParticleTime > rhs.m_ParticleTime;…
152 …bool operator <(const ParticleTime& rhs) const { return this->m_ParticleTime < rhs.m_ParticleTime;…
154 bool operator ==(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
155 bool operator !=(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
156 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= S32ToParticleTime(rhs); }
157 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= S32ToParticleTime(rhs); }
158 bool operator >(s32 rhs) const { return this->m_ParticleTime > S32ToParticleTime(rhs); }
159 bool operator <(s32 rhs) const { return this->m_ParticleTime < S32ToParticleTime(rhs); }
206 NW_FORCE_INLINE ParticleTime operator -(const ParticleTime& rhs)
209 result.m_ParticleTime = -rhs.m_ParticleTime;
220 friend ParticleTime operator -(const ParticleTime& rhs);
317 …bool operator ==(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
318 …bool operator !=(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
319 …bool operator >=(const ParticleTime& rhs) const { return this->m_ParticleTime >= rhs.m_ParticleTim…
320 …bool operator <=(const ParticleTime& rhs) const { return this->m_ParticleTime <= rhs.m_ParticleTim…
321 …bool operator >(const ParticleTime& rhs) const { return this->m_ParticleTime > rhs.m_ParticleTime;…
322 …bool operator <(const ParticleTime& rhs) const { return this->m_ParticleTime < rhs.m_ParticleTime;…
324 bool operator ==(s32 rhs) const { return this->m_ParticleTime == rhs; }
325 bool operator !=(s32 rhs) const { return this->m_ParticleTime == rhs; }
326 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= rhs; }
327 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= rhs; }
328 bool operator >(s32 rhs) const { return this->m_ParticleTime > rhs; }
329 bool operator <(s32 rhs) const { return this->m_ParticleTime < rhs; }
358 NW_FORCE_INLINE ParticleTime operator -(const ParticleTime& rhs)
360 return ParticleTime(-rhs.m_ParticleTime);