Searched refs:VEC4Scale (Results 1 – 2 of 2) sorted by relevance
| /CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/math/ |
| D | math_Vector4.h | 38 NN_MATH_INLINE VEC4* VEC4Scale(VEC4* pOut, const VEC4* p, f32 scale); 124 self_type& operator *= (f32 f) { (void)VEC4Scale(this, this, f); return *this; } 125 self_type& operator /= (f32 f) { (void)VEC4Scale(this, this, 1/f); return *this; } 132 self_type operator * (f32 f) const { VEC4 tmp; (void)VEC4Scale(&tmp, this, f); return tmp; } 242 operator * (f32 f, const VEC4& rhs) { VEC4 tmp; (void)VEC4Scale(&tmp, &rhs, f); return tmp; } 262 inline VEC4* VEC4Scale(VEC4* pOut, const VEC4& v, f32 scale) { return VEC4Scale( pOut, &v, scale); } in VEC4Scale() function
|
| /CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/math/inline/ |
| D | math_Vector4.ipp | 122 VEC4Scale(VEC4* pOut, const VEC4* p, f32 scale) 207 (void)VEC4Scale(pOut, p, FrSqrt(VEC4LenSq(p))); 237 (void)VEC4Scale(pOut, p, FrSqrt(mag));
|