Home | History | Annotate | Download | only in functional

Lines Matching refs:scalarSize

734 	const int			scalarSize		= glu::getDataTypeScalarSize(entry.type);
741 const int vecSize = scalarSize / numVecs;
744 DE_ASSERT(scalarSize%numVecs == 0);
1015 const int scalarSize = glu::getDataTypeScalarSize(basicType);
1018 if (scalarSize > 1)
1021 for (int scalarNdx = 0; scalarNdx < scalarSize; scalarNdx++)
1039 if (scalarSize > 1)
1479 const int scalarSize = glu::getDataTypeScalarSize(dstEntry.type);
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);
1686 const int scalarSize = glu::getDataTypeScalarSize(resEntry.type);
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);
1756 const bool isOk = compareComponents(scalarType, resElemPtr, refElemPtr, scalarSize);