Home
last modified time | relevance | path

Searched defs:QUAT (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-4.2.5/sources/libraries/math/ARMv6/
Dmath_Quaternion.cpp33 asm QUAT* QUATMultAsm(QUAT*, const QUAT*, const QUAT* ) in QUATMultAsm() argument
/CTR-SDK-4.2.5/include/nn/math/
Dmath_Quaternion.h241 QUAT() {} in QUAT() function
243 explicit QUAT(const f32* p) { x = p[0]; y = p[1]; z = p[2]; w = p[3]; } in QUAT() function
245 QUAT(const QUAT_& rhs) { x = rhs.x; y = rhs.y; z = rhs.z; w = rhs.w; } in QUAT() function
247 QUAT(f32 fx, f32 fy, f32 fz, f32 fw) { x = fx; y = fy; z = fz; w = fw; } in QUAT() function