Lines Matching refs:operator
99 Float24& operator =(f32 value) { this->m_Float32 = value; return *this; }
100 Float24& operator =(u32 bits24) { this->m_Float32 = Bits24ToFloat32( bits24 ); return *this; }
102 operator f32() const { return m_Float32; } in f32()
104 f32 operator +(f32 right) const { return this->m_Float32 + right; }
105 f32 operator -(f32 right) const { return this->m_Float32 - right; }
106 f32 operator *(f32 right) const { return this->m_Float32 * right; }
107 f32 operator /(f32 right) const { return this->m_Float32 / right; }
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); }
256 Float31& operator =(f32 value) { this->m_Float32 = value; return *this; }
257 Float31& operator =(u32 bits31) { this->m_Float32 = Bits31ToFloat32( bits31 ); return *this; }
259 operator f32() const { return m_Float32; } in f32()
261 f32 operator +(f32 right) const { return this->m_Float32 + right; }
262 f32 operator -(f32 right) const { return this->m_Float32 - right; }
263 f32 operator *(f32 right) const { return this->m_Float32 * right; }
264 f32 operator /(f32 right) const { return this->m_Float32 / right; }
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); }
410 Float20& operator =(f32 value) { this->m_Float32 = value; return *this; }
411 Float20& operator =(u32 bits20) { this->m_Float32 = Bits20ToFloat32( bits20 ); return *this; }
413 operator f32() const { return m_Float32; } in f32()
415 f32 operator +(f32 right) const { return this->m_Float32 + right; }
416 f32 operator -(f32 right) const { return this->m_Float32 - right; }
417 f32 operator *(f32 right) const { return this->m_Float32 * right; }
418 f32 operator /(f32 right) const { return this->m_Float32 / right; }
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); }
568 Float16& operator =(f32 value) { this->m_Float32 = value; return *this; }
569 Float16& operator =(u32 bits16) { this->m_Float32 = Bits16ToFloat32( bits16 ); return *this; }
571 operator f32() const { return m_Float32; } in f32()
572 operator u16() const { return GetFloat16Value(); } in u16()
574 f32 operator +(f32 right) const { return this->m_Float32 + right; }
575 f32 operator -(f32 right) const { return this->m_Float32 - right; }
576 f32 operator *(f32 right) const { return this->m_Float32 * right; }
577 f32 operator /(f32 right) const { return this->m_Float32 / right; }
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); }