Lines Matching refs:rhs
110 Float24& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
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; }
115 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
116 bool operator !=(f32 rhs) const { return !(*this == rhs); }
267 Float31& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
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; }
272 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
273 bool operator !=(f32 rhs) const { return !(*this == rhs); }
421 Float20& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
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; }
426 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
427 bool operator !=(f32 rhs) const { return !(*this == rhs); }
580 Float16& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
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; }
585 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
586 bool operator !=(f32 rhs) const { return !(*this == rhs); }