Lines Matching refs:operator

101     Float24& operator =(f32 value) { this->m_Float32 = value; return *this; }
102 Float24& operator =(u32 bits24) { this->m_Float32 = Bits24ToFloat32( bits24 ); return *this; }
104 operator f32() const { return m_Float32; } in f32()
106 f32 operator +(f32 right) const { return this->m_Float32 + right; }
107 f32 operator -(f32 right) const { return this->m_Float32 - right; }
108 f32 operator *(f32 right) const { return this->m_Float32 * right; }
109 f32 operator /(f32 right) const { return this->m_Float32 / right; }
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); }
258 Float31& operator =(f32 value) { this->m_Float32 = value; return *this; }
259 Float31& operator =(u32 bits31) { this->m_Float32 = Bits31ToFloat32( bits31 ); return *this; }
261 operator f32() const { return m_Float32; } in f32()
263 f32 operator +(f32 right) const { return this->m_Float32 + right; }
264 f32 operator -(f32 right) const { return this->m_Float32 - right; }
265 f32 operator *(f32 right) const { return this->m_Float32 * right; }
266 f32 operator /(f32 right) const { return this->m_Float32 / right; }
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); }
412 Float20& operator =(f32 value) { this->m_Float32 = value; return *this; }
413 Float20& operator =(u32 bits20) { this->m_Float32 = Bits20ToFloat32( bits20 ); return *this; }
415 operator f32() const { return m_Float32; } in f32()
417 f32 operator +(f32 right) const { return this->m_Float32 + right; }
418 f32 operator -(f32 right) const { return this->m_Float32 - right; }
419 f32 operator *(f32 right) const { return this->m_Float32 * right; }
420 f32 operator /(f32 right) const { return this->m_Float32 / right; }
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); }
570 Float16& operator =(f32 value) { this->m_Float32 = value; return *this; }
571 Float16& operator =(u32 bits16) { this->m_Float32 = Bits16ToFloat32( bits16 ); return *this; }
573 operator f32() const { return m_Float32; } in f32()
574 operator u16() const { return GetFloat16Value(); } in u16()
576 f32 operator +(f32 right) const { return this->m_Float32 + right; }
577 f32 operator -(f32 right) const { return this->m_Float32 - right; }
578 f32 operator *(f32 right) const { return this->m_Float32 * right; }
579 f32 operator /(f32 right) const { return this->m_Float32 / right; }
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); }