Home
last modified time | relevance | path

Searched refs:FSqrt (Results 1 – 4 of 4) sorted by relevance

/CTR-SDK-4.2.5/sources/libraries/math/
Dmath_Equation.cpp78 f32 r_c = FSqrt(-c); in SolveEquation2()
101 f32 C = -1 - FSqrt(D); in SolveEquation2()
143 f32 theta = AcosRad( r / FSqrt(spow<3>(q)) ); in SolveEquation3()
145 f32 r_q2 = -2 * FSqrt(q); in SolveEquation3()
151 f32 r3_Dr = FCbrt( FSqrt(- D) + FAbs(r) ); in SolveEquation3()
158 f32 xp = FSqrt(q); in SolveEquation3()
212 f32 C = -1 - FSqrt(D); in SolveEquation2()
238 f32 r_c_a = FSqrt(c_a); in SolveEquation2()
291 f32 theta = AcosRad( r / FSqrt(spow<3>(q)) ); in SolveEquation3()
293 f32 r_q2 = -2 * FSqrt(q); in SolveEquation3()
[all …]
/CTR-SDK-4.2.5/include/nn/math/
Dmath_Vector2.h320 f32 Length() const { return FSqrt(this->x * this->x + this->y * this->y); } in Length()
476 VEC2Len(const VEC2* p) { return FSqrt(p->x * p->x + p->y * p->y); } in VEC2Len()
Dmath_Arithmetic.h393 FSqrt(f32 x) in FSqrt() function
/CTR-SDK-4.2.5/include/nn/math/inline/
Dmath_Vector4.ipp62 return FSqrt(VEC4LenSq(p));