Home
last modified time | relevance | path

Searched refs:lhs (Results 1 – 8 of 8) sorted by relevance

/CTR-SDK-0.14.4/include/nn/util/
Dutil_Int64.h35 Int64& operator++() { Base lhs = *this; lhs++; *this = lhs; return *this; } member
36 Int64& operator--() { Base lhs = *this; lhs--; *this = lhs; return *this; } member
37 Int64& operator+=(Base rhs) { Base lhs = *this; lhs += rhs; *this = lhs; return *this; } member
38 Int64& operator-=(Base rhs) { Base lhs = *this; lhs -= rhs; *this = lhs; return *this; } member
39 Int64& operator*=(Base rhs) { Base lhs = *this; lhs *= rhs; *this = lhs; return *this; } member
40 Int64& operator/=(Base rhs) { Base lhs = *this; lhs /= rhs; *this = lhs; return *this; } member
41 Int64& operator%=(Base rhs) { Base lhs = *this; lhs %= rhs; *this = lhs; return *this; } member
42 Int64& operator|=(Base rhs) { Base lhs = *this; lhs |= rhs; *this = lhs; return *this; } member
43 Int64& operator&=(Base rhs) { Base lhs = *this; lhs &= rhs; *this = lhs; return *this; } member
44 Int64& operator^=(Base rhs) { Base lhs = *this; lhs ^= rhs; *this = lhs; return *this; } member
[all …]
/CTR-SDK-0.14.4/include/nn/fnd/
Dfnd_TimeSpan.h170 …friend bool operator==(const TimeSpan& lhs, const TimeSpan& rhs) { return lhs.m_NanoSeconds == rhs…
171 friend bool operator!=(const TimeSpan& lhs, const TimeSpan& rhs) { return !(lhs == rhs); }
172 …friend bool operator< (const TimeSpan& lhs, const TimeSpan& rhs) { return lhs.m_NanoSeconds < rhs…
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); }
178 …friend TimeSpan operator+(const TimeSpan& lhs, const TimeSpan& rhs) { TimeSpan ret(lhs); return re…
181 …friend TimeSpan operator-(const TimeSpan& lhs, const TimeSpan& rhs) { TimeSpan ret(lhs); return re…
Dfnd_DateTime.h218 …friend bool operator==(const DateTime& lhs, const DateTime& rhs) { return lhs.m_MilliSeconds == rh…
223 friend bool operator!=(const DateTime& lhs, const DateTime& rhs) { return !(lhs == rhs); }
228 …friend bool operator< (const DateTime& lhs, const DateTime& rhs) { return lhs.m_MilliSeconds < rh…
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); }
253 …friend DateTime operator+(const DateTime& lhs, const TimeSpan& rhs) { DateTime ret(lhs); return re…
263 …friend DateTime operator-(const DateTime& lhs, const TimeSpan& rhs) { DateTime ret(lhs); return re…
273 …friend TimeSpan operator-(const DateTime& lhs, const DateTime& rhs) { return TimeSpan::FromMilliSe…
Dfnd_FixedLengthString.h435 …friend bool operator==(const FixedLengthString& lhs, const FixedLengthString<Char, Length2, Size2>…
437 …return lhs.GetLength() == rhs.GetLength() && std::memcmp(lhs.GetString(), rhs.GetString(), sizeof(…
440 friend bool operator==(const FixedLengthString& lhs, const Char* rhs)
442 …return std::memcmp(lhs.m_Data, rhs, sizeof(Char) * lhs.GetLength()) == 0 && rhs[lhs.GetLength()] =…
445 friend bool operator==(const Char* lhs, const FixedLengthString& rhs)
447 return rhs == lhs;
451 …friend bool operator!=(const FixedLengthString& lhs, const FixedLengthString<Char, Length2, Size2>…
453 return !(lhs == rhs);
456 friend bool operator!=(const FixedLengthString& lhs, const Char* rhs)
458 return !(lhs == rhs);
[all …]
/CTR-SDK-0.14.4/include/nn/math/
Dmath_Vector3.h132 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()
195 return *VEC3Minimize(this, &lhs, &rhs); in Minimize()
202 self_type& Cross(const VEC3& lhs, const VEC3& rhs) in Cross()
204 return *VEC3Cross(this, &lhs, &rhs); in Cross()
Dmath_Vector4.h141 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()
204 return *VEC4Minimize(this, &lhs, &rhs); in Minimize()
Dmath_Vector2.h119 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()
180 return *VEC2Minimize(this, &lhs, &rhs); in Minimize()
/CTR-SDK-0.14.4/include/nn/
DResult.h499 friend bool operator<=(Result lhs, ConstRange) { return ConstRange::Includes(lhs); }