Home
last modified time | relevance | path

Searched refs:VEC4Sub (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/
Dmath_Vector4.h36 NN_MATH_INLINE VEC4* VEC4Sub(VEC4* pOut, const VEC4* p1, const VEC4* p2);
122 self_type& operator -= (const self_type& rhs) { (void)VEC4Sub(this, this, &rhs); return *this; }
131 …self_type operator - (const self_type& rhs) const { VEC4 tmp; (void)VEC4Sub(&tmp, this, &rhs); ret…
260 inline VEC4* VEC4Sub(VEC4* pOut, const VEC4& v1, const VEC4& v2) { return VEC4Sub( pOut, &v1, &v2 )… in VEC4Sub() function
/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/inline/
Dmath_Vector4.ipp83 VEC4Sub(VEC4* pOut, const VEC4* p1, const VEC4* p2)
254 return VEC4LenSq(VEC4Sub(&tmp, p1, p2));