Home
last modified time | relevance | path

Searched defs:p2 (Results 1 – 8 of 8) sorted by relevance

/CTR-SDK-4.2.5/include/nn/math/
Dmath_Vector2.h410 VEC2Add(VEC2* pOut, const VEC2* p1, const VEC2* p2) in VEC2Add()
421 VEC2Sub(VEC2* pOut, const VEC2* p1, const VEC2* p2) in VEC2Sub()
432 VEC2Mult(VEC2* pOut, const VEC2* p1, const VEC2* p2) in VEC2Mult()
451 VEC2Lerp(VEC2* pOut, const VEC2* p1, const VEC2* p2, f32 t) in VEC2Lerp()
460 VEC2Dot(const VEC2* p1, const VEC2* p2) in VEC2Dot()
479 VEC2DistSq(const VEC2* p1, const VEC2* p2) { VEC2 tmp; return VEC2LenSq(VEC2Sub(&tmp, p1, p2)); } in VEC2DistSq()
496 inline VEC2* VEC2Add(VEC2* pOut, const VEC2& p1, const VEC2& p2) { return VEC2Add(pOut, &p1, &p2); } in VEC2Add()
Dmath_Vector3.h446 VEC3Add(VEC3* pOut, const VEC3* p1, const VEC3* p2) in VEC3Add()
455 VEC3Sub(VEC3* pOut, const VEC3* p1, const VEC3* p2) in VEC3Sub()
464 VEC3Mult(VEC3* pOut, const VEC3* p1, const VEC3* p2) in VEC3Mult()
482 VEC3Lerp(VEC3* pOut, const VEC3* p1, const VEC3* p2, f32 t) in VEC3Lerp()
491 VEC3Dot(const VEC3* p1, const VEC3* p2) in VEC3Dot()
511 VEC3Dist( const VEC3* p1, const VEC3* p2 ) in VEC3Dist()
Dmath_Matrix33.h296 MTX33Mult(TMatrix* pOut, const TMatrix* p1, const TMatrix* p2) in MTX33Mult()
312 MTX33MAdd(MTX33* pOut, f32 t, const MTX33* p1, const MTX33* p2) in MTX33MAdd()
Dmath_Matrix43.h345 MTX43Add(MTX43* pOut, const MTX43* p1, const MTX43* p2) in MTX43Add()
379 MTX43Mult(MTX43* pOut, const MTX43* p1, const MTX43* p2) in MTX43Mult()
Dmath_Matrix34.h1010 MTX34Mult(MTX34* pOut, const MTX34* p1, const MTX34* p2) in MTX34Mult()
1042 MTX34Add(MTX34* pOut, const MTX34* p1, const MTX34* p2) in MTX34Add()
1141 MTX34MAdd(MTX34* pOut, f32 t, const MTX34* p1, const MTX34* p2) in MTX34MAdd()
Dmath_Matrix44.h799 MTX44Add(MTX44* pOut, const MTX44* p1, const MTX44* p2) in MTX44Add()
867 MTX44Mult(MTX44* pOut, const MTX44* __restrict p1, const MTX44* __restrict p2) in MTX44Mult()
/CTR-SDK-4.2.5/sources/libraries/os/
Dos_AddressSpaceManager.cpp196 uptr nnosAddressSpaceManagerAllocate(nnosAddressSpaceManager* p, nnosMemoryBlockBase* p2, size_t si… in nnosAddressSpaceManagerAllocate()
203 void nnosAddressSpaceManagerFree(nnosAddressSpaceManager* p, nnosMemoryBlockBase* p2) in nnosAddressSpaceManagerFree()
210 void nnosAddressSpaceManagerSwitch(nnosAddressSpaceManager* p, nnosMemoryBlockBase* p2, nnosMemoryB… in nnosAddressSpaceManagerSwitch()
/CTR-SDK-4.2.5/sources/libraries/math/
Dmath_Arithmetic.cpp511 f32 Bezier(f32 p1, f32 p2, f32 p3, f32 p4, f32 s) in Bezier()
540 f32 CatmullRom(f32 p0, f32 p1, f32 p2, f32 p3, f32 s) in CatmullRom()