Lines Matching refs:compSize
633 const int compSize = sizeof(deUint32);
647 deUint8* compPtr = vecPtr + compSize*compNdx;
951 const int compSize = sizeof(deUint32);
968 const deUint8* compPtr = elemPtr + (entry.isRowMajor ? rowNdx*entry.matrixStride + colNdx*compSize
969 : colNdx*entry.matrixStride + rowNdx*compSize);
982 const deUint8* compPtr = elemPtr + scalarNdx*compSize;
1279 const int compSize = sizeof(deUint32);
1295 deUint8* dstCompPtr = dstElemPtr + (dstEntry.isRowMajor ? rowNdx*dstEntry.matrixStride + colNdx*compSize
1296 : colNdx*dstEntry.matrixStride + rowNdx*compSize);
1297 const deUint8* srcCompPtr = srcElemPtr + (srcEntry.isRowMajor ? rowNdx*srcEntry.matrixStride + colNdx*compSize
1298 : colNdx*srcEntry.matrixStride + rowNdx*compSize);
1299 deMemcpy(dstCompPtr, srcCompPtr, compSize);
1304 deMemcpy(dstElemPtr, srcElemPtr, scalarSize*compSize);
1843 const int compSize = sizeof(deUint32);
1844 int vecSize = numComps*compSize;