Home
last modified time | relevance | path

Searched defs:lhs (Results 1 – 4 of 4) sorted by relevance

/CTR-SDK-4.2.5/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-4.2.5/include/nn/math/
Dmath_Vector4.h323 self_type& Lerp(const VEC4& lhs, const VEC4& rhs, f32 t) in Lerp()
375 self_type& Maximize(const VEC4& lhs, const VEC4& rhs) in Maximize()
384 self_type& Minimize(const VEC4& lhs, const VEC4& rhs) in Minimize()
Dmath_Vector3.h322 self_type& Lerp(const VEC3& lhs, const VEC3& rhs, f32 t) in Lerp()
374 self_type& Maximize(const VEC3& lhs, const VEC3& rhs) in Maximize()
383 self_type& Minimize(const VEC3& lhs, const VEC3& rhs) in Minimize()
392 self_type& Cross(const VEC3& lhs, const VEC3& rhs) in Cross()
Dmath_Vector2.h299 self_type& Lerp(const VEC2& lhs, const VEC2& rhs, f32 t) in Lerp()
349 self_type& Maximize(const VEC2& lhs, const VEC2& rhs) in Maximize()
358 self_type& Minimize(const VEC2& lhs, const VEC2& rhs) in Minimize()