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