Home
last modified time | relevance | path

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

/CTR-SDK-0.14.4/include/nn/math/
Dmath_Vector4.h35 NN_MATH_INLINE VEC4* VEC4Add(VEC4* pOut, const VEC4* p1, const VEC4* p2);
121 self_type& operator += (const self_type& rhs) { (void)VEC4Add(this, this, &rhs); return *this; }
130 …self_type operator + (const self_type& rhs) const { VEC4 tmp; (void)VEC4Add(&tmp, this, &rhs); ret…
259 inline VEC4* VEC4Add(VEC4* pOut, const VEC4& v1, const VEC4& v2) { return VEC4Add( pOut, &v1, &v2 )… in VEC4Add() function
/CTR-SDK-0.14.4/include/nn/math/inline/
Dmath_Vector4.ipp63 VEC4Add(VEC4* pOut, const VEC4* p1, const VEC4* p2)