| /CTR-SDK-1.0.0/CTR_SDK/include/nn/util/ |
| D | util_Int64.h | 37 Int64& operator+=(Base rhs) { Base lhs = *this; lhs += rhs; *this = lhs; return *this; } 38 Int64& operator-=(Base rhs) { Base lhs = *this; lhs -= rhs; *this = lhs; return *this; } 39 Int64& operator*=(Base rhs) { Base lhs = *this; lhs *= rhs; *this = lhs; return *this; } 40 Int64& operator/=(Base rhs) { Base lhs = *this; lhs /= rhs; *this = lhs; return *this; } 41 Int64& operator%=(Base rhs) { Base lhs = *this; lhs %= rhs; *this = lhs; return *this; } 42 Int64& operator|=(Base rhs) { Base lhs = *this; lhs |= rhs; *this = lhs; return *this; } 43 Int64& operator&=(Base rhs) { Base lhs = *this; lhs &= rhs; *this = lhs; return *this; } 44 Int64& operator^=(Base rhs) { Base lhs = *this; lhs ^= rhs; *this = lhs; return *this; } 45 Int64& operator<<=(int rhs) { Base lhs = *this; lhs <<= rhs; *this = lhs; return *this; } 46 Int64& operator>>=(int rhs) { Base lhs = *this; lhs >>= rhs; *this = lhs; return *this; } [all …]
|
| D | util_Float24.h | 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; } [all …]
|
| D | util_Color.h | 293 SelfType& operator +=(const SelfType& rhs) 295 *this = *this + rhs; 306 SelfType& operator -=(const SelfType& rhs) 308 *this = *this - rhs; 319 SelfType& operator *=(const SelfType& rhs) 321 *this = *this * rhs; 332 SelfType& operator /=(const SelfType& rhs) 334 *this = *this / rhs; 345 const SelfType operator +(u32 rhs) const 347 const SelfType right = SelfType(rhs); [all …]
|
| D | util_AutoObject.h | 40 ReferenceCounter& operator=(const ReferenceCounter& rhs) 42 if (this != &rhs) 100 Self& Assign(const Self& rhs) in Assign() argument 103 rhs.AssertNotUpdating(); in Assign() 104 if (this != &rhs && m_P != rhs.m_P) in Assign() 107 this->m_P = rhs.m_P; in Assign() 265 name& operator=(const name& rhs) \ 267 return Base::Assign(rhs); \
|
| /CTR-SDK-1.0.0/CTR_SDK/include/nn/fnd/ |
| D | fnd_TimeSpan.h | 170 …end bool operator==(const TimeSpan& lhs, const TimeSpan& rhs) { return lhs.m_NanoSeconds == rhs.m_… 171 friend bool operator!=(const TimeSpan& lhs, const TimeSpan& rhs) { return !(lhs == rhs); } 172 …end bool operator< (const TimeSpan& lhs, const TimeSpan& rhs) { return lhs.m_NanoSeconds < rhs.m_… 173 friend bool operator> (const TimeSpan& lhs, const TimeSpan& rhs) { return rhs < lhs; } 174 friend bool operator<=(const TimeSpan& lhs, const TimeSpan& rhs) { return !(lhs > rhs); } 175 friend bool operator>=(const TimeSpan& lhs, const TimeSpan& rhs) { return !(lhs < rhs); } 177 …TimeSpan& operator+=(const TimeSpan& rhs) { this->m_NanoSeconds += rhs.m_NanoSeconds; return *this… 178 …imeSpan operator+(const TimeSpan& lhs, const TimeSpan& rhs) { TimeSpan ret(lhs); return ret += rhs… 180 …TimeSpan& operator-=(const TimeSpan& rhs) { this->m_NanoSeconds -= rhs.m_NanoSeconds; return *this… 181 …imeSpan operator-(const TimeSpan& lhs, const TimeSpan& rhs) { TimeSpan ret(lhs); return ret -= rhs…
|
| D | fnd_DateTime.h | 218 …end bool operator==(const DateTime& lhs, const DateTime& rhs) { return lhs.m_MilliSeconds == rhs.m… 223 friend bool operator!=(const DateTime& lhs, const DateTime& rhs) { return !(lhs == rhs); } 228 …end bool operator< (const DateTime& lhs, const DateTime& rhs) { return lhs.m_MilliSeconds < rhs.m… 233 friend bool operator> (const DateTime& lhs, const DateTime& rhs) { return rhs < lhs; } 238 friend bool operator<=(const DateTime& lhs, const DateTime& rhs) { return !(lhs > rhs); } 243 friend bool operator>=(const DateTime& lhs, const DateTime& rhs) { return !(lhs < rhs); } 248 …DateTime& operator+=(const TimeSpan& rhs) { this->m_MilliSeconds += rhs.GetMilliSeconds(); return … 253 …ateTime operator+(const DateTime& lhs, const TimeSpan& rhs) { DateTime ret(lhs); return ret += rhs… 258 …DateTime& operator-=(const TimeSpan& rhs) { this->m_MilliSeconds -= rhs.GetMilliSeconds(); return … 263 …ateTime operator-(const DateTime& lhs, const TimeSpan& rhs) { DateTime ret(lhs); return ret -= rhs… [all …]
|
| D | fnd_FixedLengthString.h | 452 FixedLengthString& operator+=(const FixedLengthString<Char, Length, Size>& rhs) 454 this->AppendTail(rhs); 461 FixedLengthString& operator+=(const Char* rhs) 463 this->AppendTail(rhs); 468 …d bool operator==(const FixedLengthString& lhs, const FixedLengthString<Char, Length2, Size2>& rhs) 470 …return lhs.GetLength() == rhs.GetLength() && std::memcmp(lhs.GetString(), rhs.GetString(), sizeof(… 473 friend bool operator==(const FixedLengthString& lhs, const Char* rhs) 475 …return std::memcmp(lhs.m_Data, rhs, sizeof(Char) * lhs.GetLength()) == 0 && rhs[lhs.GetLength()] =… 478 friend bool operator==(const Char* lhs, const FixedLengthString& rhs) 480 return rhs == lhs; [all …]
|
| /CTR-SDK-1.0.0/CTR_SDK/include/nn/os/ |
| D | os_Tick.h | 89 Tick& operator-=(Tick rhs) { this->m_Tick -= rhs.m_Tick; return *this; } 90 Tick operator-(Tick rhs) const { Tick ret(*this); return ret -= rhs; } 92 Tick& operator+=(Tick rhs) { this->m_Tick += rhs.m_Tick; return *this; } 93 Tick operator+(Tick rhs) const { Tick ret(*this); return ret += rhs; } 95 inline Tick& operator+=(fnd::TimeSpan rhs); 96 Tick operator+(fnd::TimeSpan rhs) const { Tick ret(*this); return ret += rhs; } 122 inline Tick& Tick::operator+=(fnd::TimeSpan rhs) 124 …const s64 tick = nnmathMultiplyAndDivide(rhs.GetNanoSeconds(), TICKS_PER_SECOND, 1000 * 1000 * 100…
|
| /CTR-SDK-1.0.0/CTR_SDK/include/nn/math/ |
| D | math_Geometry.h | 87 bool operator==(const self_type& rhs) const { return P == rhs.P && d == rhs.d; } 88 bool operator!=(const self_type& rhs) const { return P != rhs.P || d != rhs.d; } 120 bool operator==(const self_type& rhs) const { return P == rhs.P && d == rhs.d; } 121 bool operator!=(const self_type& rhs) const { return P != rhs.P || d != rhs.d; } 147 bool operator==(const self_type& rhs) const { return P0 == rhs.P0 && P1 == rhs.P1; } 148 bool operator!=(const self_type& rhs) const { return P0 != rhs.P0 || P1 == rhs.P1; } 180 bool operator==(const self_type& rhs) const { return C == rhs.C && r == rhs.r; } 181 bool operator!=(const self_type& rhs) const { return C != rhs.C || r != rhs.r; } 219 bool operator==(const self_type& rhs) const { return N == rhs.N && d == rhs.d; } 220 bool operator!=(const self_type& rhs) const { return N != rhs.N || d != rhs.d; } [all …]
|
| D | math_Vector4.h | 121 self_type& operator += (const self_type& rhs) { (void)VEC4Add(this, this, &rhs); return *this; } 122 self_type& operator -= (const self_type& rhs) { (void)VEC4Sub(this, this, &rhs); return *this; } 123 … self_type& operator *= (const self_type& rhs) { (void)VEC4Mult(this, this, &rhs); return *this; } 130 …self_type operator + (const self_type& rhs) const { VEC4 tmp; (void)VEC4Add(&tmp, this, &rhs); ret… 131 …self_type operator - (const self_type& rhs) const { VEC4 tmp; (void)VEC4Sub(&tmp, this, &rhs); ret… 141 self_type& Lerp(const VEC4& lhs, const VEC4& rhs, f32 t) in Lerp() 143 return *VEC4Lerp(this, &lhs, &rhs, t); in Lerp() 193 self_type& Maximize(const VEC4& lhs, const VEC4& rhs) in Maximize() 195 return *VEC4Maximize(this, &lhs, &rhs); in Maximize() 202 self_type& Minimize(const VEC4& lhs, const VEC4& rhs) in Minimize() [all …]
|
| D | math_Vector2.h | 99 self_type& operator += (const self_type& rhs) { x += rhs.x; y += rhs.y; return *this; } 100 self_type& operator -= (const self_type& rhs) { x -= rhs.x; y -= rhs.y; return *this; } 101 self_type& operator *= (const self_type& rhs) { x *= rhs.x; y *= rhs.y; return *this; } 108 self_type operator + (const self_type& rhs) const { return self_type(x + rhs.x, y + rhs.y); } 109 self_type operator - (const self_type& rhs) const { return self_type(x - rhs.x, y - rhs.y); } 119 self_type& Lerp(const VEC2& lhs, const VEC2& rhs, f32 t) in Lerp() 121 return *VEC2Lerp(this, &lhs, &rhs, t); in Lerp() 169 self_type& Maximize(const VEC2& lhs, const VEC2& rhs) in Maximize() 171 return *VEC2Maximize(this, &lhs, &rhs); in Maximize() 178 self_type& Minimize(const VEC2& lhs, const VEC2& rhs) in Minimize() [all …]
|
| D | math_Quaternion.h | 71 QUAT(const QUAT_& rhs) { x = rhs.x; y = rhs.y; z = rhs.z; w = rhs.w; } in QUAT() 82 self_type& operator += (const self_type& rhs) { (void)QUATAdd(this, this, &rhs); return *this; } 83 self_type& operator -= (const self_type& rhs) { (void)QUATSub(this, this, &rhs); return *this; } 90 …self_type operator + (const self_type& rhs) const { QUAT tmp; (void)QUATAdd(&tmp, this, &rhs); ret… 91 …self_type operator - (const self_type& rhs) const { QUAT tmp; (void)QUATSub(&tmp, this, &rhs); ret… 95 …bool operator == (const self_type& rhs) const { return x == rhs.x && y == rhs.y && z == rhs.z && w… 96 …bool operator != (const self_type& rhs) const { return x != rhs.x || y != rhs.y || z != rhs.z || w… 104 operator * (f32 f, const QUAT& rhs) { QUAT tmp; (void)QUATScale(&tmp, &rhs, f); return tmp; }
|
| D | math_Vector3.h | 111 self_type& operator += (const self_type& rhs) { (void)VEC3Add(this, this, &rhs); return *this; } 112 self_type& operator -= (const self_type& rhs) { (void)VEC3Sub(this, this, &rhs); return *this; } 113 … self_type& operator *= (const self_type& rhs) { (void)VEC3Mult(this, this, &rhs); return *this; } 121 …self_type operator + (const self_type& rhs) const { VEC3 tmp; (void)VEC3Add(&tmp, this, &rhs); ret… 122 …self_type operator - (const self_type& rhs) const { VEC3 tmp; (void)VEC3Sub(&tmp, this, &rhs); ret… 132 self_type& Lerp(const VEC3& lhs, const VEC3& rhs, f32 t) in Lerp() 134 return *VEC3Lerp(this, &lhs, &rhs, t); in Lerp() 184 self_type& Maximize(const VEC3& lhs, const VEC3& rhs) in Maximize() 186 return *VEC3Maximize(this, &lhs, &rhs); in Maximize() 193 self_type& Minimize(const VEC3& lhs, const VEC3& rhs) in Minimize() [all …]
|
| D | math_Matrix23.h | 106 MTX23(const MTX22& rhs) { MTX22ToMTX23(this, &rhs); } in MTX23() 173 self_type& operator += (const self_type& rhs) { return *MTX23Add(this, this, &rhs); } 174 self_type& operator -= (const self_type& rhs) { return *MTX23Sub(this, this, &rhs); } 186 …self_type operator + (const self_type& rhs) const { MTX23 tmp; return *MTX23Add(&tmp, this, &rhs);… 187 …self_type operator - (const self_type& rhs) const { MTX23 tmp; return *MTX23Sub(&tmp, this, &rhs);… 245 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX23)) ==… 248 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX23)) !=…
|
| D | math_Matrix43.h | 175 self_type& operator += (const self_type& rhs) { return *MTX43Add(this, this, &rhs); } 176 self_type& operator -= (const self_type& rhs) { return *MTX43Sub(this, this, &rhs); } 178 self_type& operator *= (const self_type& rhs) { return *MTX43Mult(this, this, &rhs); } 191 …self_type operator + (const self_type& rhs) const { MTX43 tmp; return *MTX43Add(&tmp, this, &rhs);… 192 …self_type operator - (const self_type& rhs) const { MTX43 tmp; return *MTX43Add(&tmp, this, &rhs);… 213 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX43)) ==… 216 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX43)) !=…
|
| D | math_Matrix22.h | 100 MTX22(const MTX23& rhs); 167 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX22)) ==… 170 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX22)) !=… 193 MTX22::MTX22(const MTX23& rhs) { MTX23ToMTX22(this, &rhs); } in MTX22() argument
|
| D | math_Transform.h | 64 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(Transform2… 65 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(Transform2… 91 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(Transform3… 92 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(Transform3…
|
| D | math_Matrix33.h | 149 MTX33(const MTX34& rhs) { MTX34ToMTX33(this, &rhs); } in MTX33() 219 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX33)) ==… 222 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX33)) !=…
|
| D | math_Matrix34.h | 233 MTX34(const MTX34& rhs) { (void)MTX34Copy(this, &rhs); } in MTX34() 236 MTX34(const MTX33& rhs) { MTX33ToMTX34(this, &rhs); } in MTX34() 298 self_type& operator += (const self_type& rhs) { return *MTX34Add(this, this, &rhs); } 299 self_type& operator -= (const self_type& rhs) { return *MTX34Sub(this, this, &rhs); } 313 …self_type operator + (const self_type& rhs) const { MTX34 tmp; return *MTX34Add(&tmp, this, &rhs);… 314 …self_type operator - (const self_type& rhs) const { MTX34 tmp; return *MTX34Sub(&tmp, this, &rhs);… 466 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX34)) ==… 469 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX34)) !=… 482 inline MTX34 operator * (f32 f, const MTX34& rhs) 485 (void)MTX34Mult(&tmp, &rhs, f);
|
| D | math_Matrix44.h | 289 MTX44(const MTX34& rhs) in MTX44() 291 (void)MTX34Copy((MTX34*)this, (MTX34*)&rhs); in MTX44() 296 MTX44(const MTX44& rhs) { (void)MTX44Copy(this, &rhs); } in MTX44() 364 self_type& operator *= (const self_type& rhs) { return *MTX44Mult(this, this, &rhs); } 366 self_type& operator += (const self_type& rhs) { return *MTX44Add(this, this, &rhs); } 367 self_type& operator -= (const self_type& rhs) { return *MTX44Sub(this, this, &rhs); } 381 …self_type operator + (const self_type& rhs) const { MTX44 tmp; return *MTX44Add(&tmp, this, &rhs);… 382 …self_type operator - (const self_type& rhs) const { MTX44 tmp; return *MTX44Sub(&tmp, this, &rhs);… 484 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX44)) ==… 487 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX44)) !=…
|
| /CTR-SDK-1.0.0/CTR_SDK/include/nn/ |
| D | Handle.h | 119 bool operator ==(const Handle& rhs) const { return this->m_Handle == rhs.m_Handle; } 120 bool operator !=(const Handle& rhs) const { return this->m_Handle != rhs.m_Handle; }
|
| /CTR-SDK-1.0.0/CTR_SDK/include/nn/fslow/ |
| D | fslow_IArchive.h | 225 …bool operator==(const ArchiveName& rhs) const { return std::memcmp(&this->m_Data, &rhs.m_Data, siz… 226 bool operator!=(const ArchiveName& rhs) const { return !(*this == rhs); } 228 …bool operator>(const ArchiveName& rhs) const { return std::memcmp(&this->m_Data, &rhs.m_Data, size… 229 bool operator<=(const ArchiveName& rhs) const { return !(*this > rhs); } 230 bool operator<(const ArchiveName& rhs) const { return rhs > *this; } 231 bool operator>=(const ArchiveName& rhs) const { return rhs <= *this; }
|
| D | fslow_HandleTable.h | 93 …bool operator==(const HandleValue& rhs) const { return (m_Data.lo == rhs.lo) && (m_Data.hi == r… 94 …bool operator!=(const HandleValue& rhs) const { return (m_Data.lo != rhs.lo) || (m_Data.hi != r…
|
| D | fslow_SafeHandle.h | 190 …bool operator==(const SafeHandleBase& rhs) const { return (m_Data[0] == rhs.m_Data[0]) && (m_Da… 191 …bool operator!=(const SafeHandleBase& rhs) const { return (m_Data[0] != rhs.m_Data[0]) || (m_Da…
|
| /CTR-SDK-1.0.0/CTR_SDK/include/nn/font/ |
| D | font_CharStrmReader.h | 45 CharStrmReader(const CharStrmReader& rhs) in CharStrmReader() argument 46 : mCharStrm(rhs.mCharStrm), in CharStrmReader() 47 mReadFunc(rhs.mReadFunc) in CharStrmReader()
|