Home
last modified time | relevance | path

Searched refs:PVRT_MIN (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTString.cpp418 …size_t stSearchLength = PVRT_MIN(stLhsLength,PVRT_MIN(_Str.m_Size,_Num1)); // number of comparison… in compare()
419 if(PVRT_MIN(stLhsLength,_Num1)<PVRT_MIN(_Str.m_Size,_Num1)) in compare()
423 else if(PVRT_MIN(stLhsLength,_Num1)>PVRT_MIN(_Str.m_Size,_Num1)) in compare()
463 …size_t stSearchLength = PVRT_MIN(stLhsLength,PVRT_MIN(_Str.m_Size,PVRT_MIN(_Num1,_Count))); // num… in compare()
464 if(PVRT_MIN(stLhsLength,_Num1)<PVRT_MIN(_Str.m_Size,_Count)) in compare()
468 else if(PVRT_MIN(stLhsLength,_Num1)>PVRT_MIN(_Str.m_Size,_Count)) in compare()
519 …size_t stSearchLength = PVRT_MIN(stLhsLength,PVRT_MIN(stRhsLength,_Num1)); // number of comparison… in compare()
520 if(PVRT_MIN(stLhsLength,_Num1)<PVRT_MIN(stRhsLength,_Num1)) in compare()
524 else if(PVRT_MIN(stLhsLength,_Num1)>PVRT_MIN(stRhsLength,_Num1)) in compare()
564 …size_t stSearchLength = PVRT_MIN(stLhsLength,PVRT_MIN(stRhsLength,PVRT_MIN(_Num1,_Count))); // num… in compare()
[all …]
DPVRTGlobal.h14 #define PVRT_MIN(a,b) (((a) < (b)) ? (a) : (b)) macro
16 #define PVRT_CLAMP(x, l, h) (PVRT_MIN((h), PVRT_MAX((x), (l))))
DPVRTQuaternionF.cpp157 fCosine = PVRT_MIN(fCosine, 1.0f); in PVRTMatrixQuaternionSlerpF()
DPVRTPrint3D.cpp339 const unsigned int uiShortestEdge = PVRT_MIN(dwScreenX, dwScreenY); in SetTextures()
960 m_nVtxCacheMax = PVRT_MIN(m_nVtxCacheMax * 2, MAX_CACHED_VTX); in DrawLine()
DPVRTQuaternionX.cpp162 fCosine = PVRT_MIN(fCosine, PVRTF2X(1.0f)); in PVRTMatrixQuaternionSlerpX()
DPVRTGeometry.cpp1288 i = PVRT_MIN(i, m_nVtxLimit - m_sOptBest.nVtxNum - 3); in Fill()
DPVRTModelPOD.cpp1751 if(!src.Read(pszExpOpt, PVRT_MIN(nLen, (unsigned int) count)))
1766 if(!src.Read(pszHistory, PVRT_MIN(nLen, (unsigned int) historyCount)))
2916 nWeight[i] = PVRT_MIN(nWeight[i], 255);
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
DPVRTPrint3DAPI.cpp290 nVtx = PVRT_MIN(m_nVtxCache, 0xFFFC); in Flush()