Searched defs:lhs (Results 1 – 4 of 4) sorted by relevance
| /CTR-SDK-4.2.5/include/nn/util/ |
| D | util_Int64.h | 35 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/ |
| D | math_Vector4.h | 323 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()
|
| D | math_Vector3.h | 322 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()
|
| D | math_Vector2.h | 299 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()
|