Home
last modified time | relevance | path

Searched defs:q (Results 1 – 7 of 7) sorted by relevance

/CTR-SDK-0.14.4/include/nn/math/
Dmath_Quaternion.h128 QUATInverse(QUAT* pOut, const QUAT* __restrict q) in QUATInverse()
178 QUATNormalize(QUAT* pOut, const QUAT* __restrict q) in QUATNormalize()
215 inline QUAT* QUATInverse(QUAT* pOut, const QUAT& q) { return QUATInverse( pOut, &q ); } in QUATInverse()
216 inline QUAT* QUATScale(QUAT* pOut, const QUAT& q, f32 scale) { return QUATScale( pOut, &q, scale );… in QUATScale()
217 inline QUAT* QUATNormalize(QUAT* pOut, const QUAT& q) { return QUATNormalize( pOut, &q ); } in QUATNormalize()
218 inline QUAT* QUATExp(QUAT* pOut, const QUAT& q) { return QUATExp( pOut, &q ); } in QUATExp()
219 inline QUAT* QUATLogN(QUAT* pOut, const QUAT& q) { return QUATLogN( pOut, &q ); } in QUATLogN()
223 inline QUAT* QUATSquad(QUAT* pOut, const QUAT& p, const QUAT& a, const QUAT& b, const QUAT& q, f32 … in QUATSquad()
225 inline QUAT* QUATMakeClosest( QUAT* pOut, const QUAT& q, const QUAT& qto ) { return QUATMakeCloses… in QUATMakeClosest()
Dmath_Matrix34.h1085 inline MTX34* QUATToMTX34(MTX34* pOut, const QUAT& q) { return QUATToMTX34( pOut, &q ); } in QUATToMTX34()
/CTR-SDK-0.14.4/sources/libraries/fnd/
Dfnd_HeapBase.cpp110 bit8*& q = reinterpret_cast<bit8*&>(end); in FillMemory8() local
125 bit32*& q = reinterpret_cast<bit32*&>(end); in FillMemory32() local
/CTR-SDK-0.14.4/include/nn/fnd/
Dfnd_LinkedList.h233 inline void IntrusiveLinkedList<T, Tag>::InsertBefore(Item* p, Item* q) in InsertBefore()
420 Item* q = p; in Clear() local
Dfnd_Queue.h145 Item* q = p; in Clear() local
/CTR-SDK-0.14.4/sources/libraries/math/
Dmath_Equation.cpp136 f32 q = (spow<2>(b) - 3 * c) / 9; in SolveEquation3() local
283 f32 q = (spow<2>(b) - 3 * c) / 9; in SolveEquation3() local
361 f32 q = spow<3>(b) / 8 - b * c / 2 + d; in SolveEquation4() local
Dmath_Geometry.cpp430 DistSqPoint3ToAABB(const VEC3* P, const AABB* B, VEC3* q) in DistSqPoint3ToAABB()