Lines Matching refs:compSize
742 const int compSize = sizeof(deUint32); in generateValue() local
762 deUint8* const compPtr = vecPtr + compSize*compNdx; in generateValue()
983 const int compSize = sizeof(deUint32); in generateImmMatrixSrc() local
994 …t deUint8* compPtr = (const deUint8*)valuePtr + (isRowMajor ? rowNdx*matrixStride + colNdx*compSize in generateImmMatrixSrc()
995 : colNdx*matrixStride + rowNdx*compSize); in generateImmMatrixSrc()
1016 const int compSize = sizeof(deUint32); in generateImmScalarVectorSrc() local
1023 const deUint8* compPtr = (const deUint8*)valuePtr + scalarNdx*compSize; in generateImmScalarVectorSrc()
1481 const int compSize = sizeof(deUint32); in copyBufferVarData() local
1513 …8* dstCompPtr = dstElemPtr + (dstEntry.isRowMajor ? rowNdx*dstEntry.matrixStride + colNdx*compSize in copyBufferVarData()
1514 : colNdx*dstEntry.matrixStride + rowNdx*compSize); in copyBufferVarData()
1515 …t8* srcCompPtr = srcElemPtr + (srcEntry.isRowMajor ? rowNdx*srcEntry.matrixStride + colNdx*compSize in copyBufferVarData()
1516 : colNdx*srcEntry.matrixStride + rowNdx*compSize); in copyBufferVarData()
1518 …DE_ASSERT((deIntptr)(srcCompPtr + compSize) - (deIntptr)srcBlockPtr.ptr <= (deIntptr)srcBlockPtr.s… in copyBufferVarData()
1519 …DE_ASSERT((deIntptr)(dstCompPtr + compSize) - (deIntptr)dstBlockPtr.ptr <= (deIntptr)dstBlockPtr.s… in copyBufferVarData()
1520 deMemcpy(dstCompPtr, srcCompPtr, compSize); in copyBufferVarData()
1526 …DE_ASSERT((deIntptr)(srcElemPtr + scalarSize*compSize) - (deIntptr)srcBlockPtr.ptr <= (deIntptr)sr… in copyBufferVarData()
1527 …DE_ASSERT((deIntptr)(dstElemPtr + scalarSize*compSize) - (deIntptr)dstBlockPtr.ptr <= (deIntptr)ds… in copyBufferVarData()
1528 deMemcpy(dstElemPtr, srcElemPtr, scalarSize*compSize); in copyBufferVarData()
1688 const int compSize = sizeof(deUint32); in compareBufferVarData() local
1724 …8* resCompPtr = resElemPtr + (resEntry.isRowMajor ? rowNdx*resEntry.matrixStride + colNdx*compSize in compareBufferVarData()
1725 : colNdx*resEntry.matrixStride + rowNdx*compSize); in compareBufferVarData()
1726 …t8* refCompPtr = refElemPtr + (refEntry.isRowMajor ? rowNdx*refEntry.matrixStride + colNdx*compSize in compareBufferVarData()
1727 : colNdx*refEntry.matrixStride + rowNdx*compSize); in compareBufferVarData()
1729 …DE_ASSERT((deIntptr)(refCompPtr + compSize) - (deIntptr)refBlockPtr.ptr <= (deIntptr)refBlockPtr.s… in compareBufferVarData()
1730 …DE_ASSERT((deIntptr)(resCompPtr + compSize) - (deIntptr)resBlockPtr.ptr <= (deIntptr)resBlockPtr.s… in compareBufferVarData()
1753 …DE_ASSERT((deIntptr)(refElemPtr + scalarSize*compSize) - (deIntptr)refBlockPtr.ptr <= (deIntptr)re… in compareBufferVarData()
1754 …DE_ASSERT((deIntptr)(resElemPtr + scalarSize*compSize) - (deIntptr)resBlockPtr.ptr <= (deIntptr)re… in compareBufferVarData()
2550 const int compSize = sizeof(deUint32); in checkLayoutBounds() local
2551 const int vecSize = numComps*compSize; in checkLayoutBounds()