Lines Matching refs:rhs
109 Float24& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
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; }
114 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
115 bool operator !=(f32 rhs) const { return !(*this == rhs); }
266 Float31& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
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; }
271 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
272 bool operator !=(f32 rhs) const { return !(*this == rhs); }
420 Float20& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
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; }
425 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
426 bool operator !=(f32 rhs) const { return !(*this == rhs); }
579 Float16& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
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; }
584 bool operator ==(f32 rhs) const { return (rhs == this->m_Float32); }
585 bool operator !=(f32 rhs) const { return !(*this == rhs); }