Lines Matching refs:rhs
111 Float24& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
112 Float24& operator -=(f32 rhs) { this->m_Float32 -= rhs; return *this; }
113 Float24& operator *=(f32 rhs) { this->m_Float32 *= rhs; return *this; }
114 Float24& operator /=(f32 rhs) { this->m_Float32 /= rhs; return *this; }
116 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
117 bool operator !=(f32 rhs) const { return !(*this == rhs); }
268 Float31& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
269 Float31& operator -=(f32 rhs) { this->m_Float32 -= rhs; return *this; }
270 Float31& operator *=(f32 rhs) { this->m_Float32 *= rhs; return *this; }
271 Float31& operator /=(f32 rhs) { this->m_Float32 /= rhs; return *this; }
273 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
274 bool operator !=(f32 rhs) const { return !(*this == rhs); }
422 Float20& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
423 Float20& operator -=(f32 rhs) { this->m_Float32 -= rhs; return *this; }
424 Float20& operator *=(f32 rhs) { this->m_Float32 *= rhs; return *this; }
425 Float20& operator /=(f32 rhs) { this->m_Float32 /= rhs; return *this; }
427 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
428 bool operator !=(f32 rhs) const { return !(*this == rhs); }
581 Float16& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
582 Float16& operator -=(f32 rhs) { this->m_Float32 -= rhs; return *this; }
583 Float16& operator *=(f32 rhs) { this->m_Float32 *= rhs; return *this; }
584 Float16& operator /=(f32 rhs) { this->m_Float32 /= rhs; return *this; }
586 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
587 bool operator !=(f32 rhs) const { return !(*this == rhs); }