Lines Matching refs:compSize
737 const int compSize = sizeof(deUint32);
757 deUint8* const compPtr = vecPtr + compSize*compNdx;
978 const int compSize = sizeof(deUint32);
989 const deUint8* compPtr = (const deUint8*)valuePtr + (isRowMajor ? rowNdx*matrixStride + colNdx*compSize
990 : colNdx*matrixStride + rowNdx*compSize);
1011 const int compSize = sizeof(deUint32);
1018 const deUint8* compPtr = (const deUint8*)valuePtr + scalarNdx*compSize;
1490 const int compSize = sizeof(deUint32);
1522 deUint8* dstCompPtr = dstElemPtr + (dstEntry.isRowMajor ? rowNdx*dstEntry.matrixStride + colNdx*compSize
1523 : colNdx*dstEntry.matrixStride + rowNdx*compSize);
1524 const deUint8* srcCompPtr = srcElemPtr + (srcEntry.isRowMajor ? rowNdx*srcEntry.matrixStride + colNdx*compSize
1525 : colNdx*srcEntry.matrixStride + rowNdx*compSize);
1527 DE_ASSERT((deIntptr)(srcCompPtr + compSize) - (deIntptr)srcBlockPtr.ptr <= (deIntptr)srcBlockPtr.size);
1528 DE_ASSERT((deIntptr)(dstCompPtr + compSize) - (deIntptr)dstBlockPtr.ptr <= (deIntptr)dstBlockPtr.size);
1529 deMemcpy(dstCompPtr, srcCompPtr, compSize);
1535 DE_ASSERT((deIntptr)(srcElemPtr + scalarSize*compSize) - (deIntptr)srcBlockPtr.ptr <= (deIntptr)srcBlockPtr.size);
1536 DE_ASSERT((deIntptr)(dstElemPtr + scalarSize*compSize) - (deIntptr)dstBlockPtr.ptr <= (deIntptr)dstBlockPtr.size);
1537 deMemcpy(dstElemPtr, srcElemPtr, scalarSize*compSize);
1697 const int compSize = sizeof(deUint32);
1733 deUint8* resCompPtr = resElemPtr + (resEntry.isRowMajor ? rowNdx*resEntry.matrixStride + colNdx*compSize
1734 : colNdx*resEntry.matrixStride + rowNdx*compSize);
1735 const deUint8* refCompPtr = refElemPtr + (refEntry.isRowMajor ? rowNdx*refEntry.matrixStride + colNdx*compSize
1736 : colNdx*refEntry.matrixStride + rowNdx*compSize);
1738 DE_ASSERT((deIntptr)(refCompPtr + compSize) - (deIntptr)refBlockPtr.ptr <= (deIntptr)refBlockPtr.size);
1739 DE_ASSERT((deIntptr)(resCompPtr + compSize) - (deIntptr)resBlockPtr.ptr <= (deIntptr)resBlockPtr.size);
1762 DE_ASSERT((deIntptr)(refElemPtr + scalarSize*compSize) - (deIntptr)refBlockPtr.ptr <= (deIntptr)refBlockPtr.size);
1763 DE_ASSERT((deIntptr)(resElemPtr + scalarSize*compSize) - (deIntptr)resBlockPtr.ptr <= (deIntptr)resBlockPtr.size);
2559 const int compSize = sizeof(deUint32);
2560 const int vecSize = numComps*compSize;