Home
last modified time | relevance | path

Searched refs:nCnt (Results 1 – 10 of 10) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTVertex.cpp66 const int nCnt) in PVRTVertexRead() argument
83 for(i = 0; i < nCnt; ++i) in PVRTVertexRead()
88 for(i = 0; i < nCnt; ++i) in PVRTVertexRead()
93 for(i = 0; i < nCnt; ++i) in PVRTVertexRead()
98 for(i = 0; i < nCnt; ++i) in PVRTVertexRead()
103 for(i = 0; i < nCnt; ++i) in PVRTVertexRead()
108 for(i = 0; i < nCnt; ++i) in PVRTVertexRead()
113 for(i = 0; i < nCnt; ++i) in PVRTVertexRead()
118 for(i = 0; i < nCnt; ++i) in PVRTVertexRead()
123 for(i = 0; i < nCnt; ++i) in PVRTVertexRead()
[all …]
DPVRTVector.cpp336 void PVRTLinearEqSolve(VERTTYPE * const pRes, VERTTYPE ** const pSrc, const int nCnt) in PVRTLinearEqSolve() argument
341 if (nCnt == 1) in PVRTLinearEqSolve()
349 i = nCnt; in PVRTLinearEqSolve()
354 if(pSrc[i][nCnt] != f2vt(0.0f)) in PVRTLinearEqSolve()
357 if(i != (nCnt-1)) in PVRTLinearEqSolve()
359 for(j = 0; j <= nCnt; ++j) in PVRTLinearEqSolve()
362 f = pSrc[nCnt-1][j]; in PVRTLinearEqSolve()
363 pSrc[nCnt-1][j] = pSrc[i][j]; in PVRTLinearEqSolve()
369 for(j = 0; j < (nCnt-1); ++j) in PVRTLinearEqSolve()
371 _ASSERT(pSrc[nCnt-1][nCnt] != f2vt(0.0f)); in PVRTLinearEqSolve()
[all …]
DPVRTMatrixF.cpp776 const int nCnt) in PVRTMatrixLinearEqSolveF() argument
785 _RPT1(_CRT_WARN, "LinearEqSolve(%d)\n", nCnt); in PVRTMatrixLinearEqSolveF()
786 for(i = 0; i < nCnt; ++i) in PVRTMatrixLinearEqSolveF()
789 for(j = 1; j <= nCnt; ++j) in PVRTMatrixLinearEqSolveF()
795 if(nCnt == 1) in PVRTMatrixLinearEqSolveF()
803 i = nCnt; in PVRTMatrixLinearEqSolveF()
808 if(pSrc[i][nCnt] != 0) in PVRTMatrixLinearEqSolveF()
811 if(i != (nCnt-1)) in PVRTMatrixLinearEqSolveF()
813 for(j = 0; j <= nCnt; ++j) in PVRTMatrixLinearEqSolveF()
816 f = pSrc[nCnt-1][j]; in PVRTMatrixLinearEqSolveF()
[all …]
DPVRTBoneBatch.cpp180 int i, nCnt; in TestMerge() local
182 nCnt = 0; in TestMerge()
185 ++nCnt; in TestMerge()
187 return m_nCnt+nCnt > m_nCapacity ? -1 : nCnt; in TestMerge()
322 void Append(const void * const pData, const int nCnt) in Append() argument
324 m_p = (char*)realloc(m_p, (m_nCnt + nCnt) * m_nSize); in Append()
327 memcpy(&m_p[m_nCnt * m_nSize], pData, nCnt * m_nSize); in Append()
328 m_nCnt += nCnt; in Append()
372 int nCnt; in Surrender() local
375 nCnt = m_nCnt; in Surrender()
[all …]
DPVRTMatrixX.cpp804 const int nCnt) in PVRTMatrixLinearEqSolveX() argument
809 if (nCnt == 1) in PVRTMatrixLinearEqSolveX()
817 i = nCnt; in PVRTMatrixLinearEqSolveX()
822 if(pSrc[i][nCnt] != PVRTF2X(0.0f)) in PVRTMatrixLinearEqSolveX()
825 if(i != (nCnt-1)) in PVRTMatrixLinearEqSolveX()
827 for(j = 0; j <= nCnt; ++j) in PVRTMatrixLinearEqSolveX()
830 f = pSrc[nCnt-1][j]; in PVRTMatrixLinearEqSolveX()
831 pSrc[nCnt-1][j] = pSrc[i][j]; in PVRTMatrixLinearEqSolveX()
837 for(j = 0; j < (nCnt-1); ++j) in PVRTMatrixLinearEqSolveX()
839 _ASSERT(pSrc[nCnt-1][nCnt] != PVRTF2X(0.0f)); in PVRTMatrixLinearEqSolveX()
[all …]
DPVRTVertex.h55 const int nCnt);
80 const int nCnt,
DPVRTMatrix.h776 const int nCnt);
791 const int nCnt);
DPVRTModelPOD.h736 void PVRTModelPODDataConvert(CPODData &data, const unsigned int nCnt, const EPVRTDataType eNewType);
749 void PVRTModelPODDataShred(CPODData &data, const unsigned int nCnt, const int *pChannels);
DPVRTModelPOD.cpp3095 void PVRTModelPODDataConvert(CPODData &data, const unsigned int nCnt, const EPVRTDataType eNewType) argument
3141 data.pData = (unsigned char*)malloc(data.nStride * nCnt);
3144 for(i = 0; i < nCnt; ++i)
3304 void PVRTModelPODDataShred(CPODData &data, const unsigned int nCnt, const int * pChannels) argument
3338 data.pData = (unsigned char*)malloc(data.nStride * nCnt);
3340 for(i = 0; i < nCnt; ++i)
DPVRTVector.h37 void PVRTLinearEqSolve(VERTTYPE * const pRes, VERTTYPE ** const pSrc, const int nCnt);