Home
last modified time | relevance | path

Searched refs:PVRTXCOS (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTFixedPoint.h45 #define PVRTXCOS(x) (cos_val[(PVRTXMUL(((PVRTXDIV((x)<0? -(x):(x), PVRT_TWO_PIx)) & 0x0000FFFF), (… macro
54 #define PVRTFCOS(x) PVRTX2F(PVRTXCOS(PVRTF2X(x)))
86 #define PVRTCOS(x) PVRTXCOS(x)
DPVRTMatrixX.cpp158 fCosine = PVRTXCOS(-fAngle); in PVRTMatrixRotationXX()
161 fCosine = PVRTXCOS(fAngle); in PVRTMatrixRotationXX()
186 fCosine = PVRTXCOS(-fAngle); in PVRTMatrixRotationYX()
189 fCosine = PVRTXCOS(fAngle); in PVRTMatrixRotationYX()
214 fCosine = PVRTXCOS(-fAngle); in PVRTMatrixRotationZX()
217 fCosine = PVRTXCOS(fAngle); in PVRTMatrixRotationZX()
DPVRTQuaternionX.cpp57 fCos = PVRTXCOS(fAngle>>1); in PVRTMatrixQuaternionRotationAxisX()