Lines Matching refs:scalarSize
734 const int scalarSize = glu::getDataTypeScalarSize(entry.type); in generateValue() local
741 const int vecSize = scalarSize / numVecs; in generateValue()
744 DE_ASSERT(scalarSize%numVecs == 0); in generateValue()
1015 const int scalarSize = glu::getDataTypeScalarSize(basicType); in generateImmScalarVectorSrc() local
1018 if (scalarSize > 1) in generateImmScalarVectorSrc()
1021 for (int scalarNdx = 0; scalarNdx < scalarSize; scalarNdx++) in generateImmScalarVectorSrc()
1039 if (scalarSize > 1) in generateImmScalarVectorSrc()
1493 const int scalarSize = glu::getDataTypeScalarSize(dstEntry.type); in copyBufferVarData() local
1540 …DE_ASSERT((deIntptr)(srcElemPtr + scalarSize*compSize) - (deIntptr)srcBlockPtr.ptr <= (deIntptr)sr… in copyBufferVarData()
1541 …DE_ASSERT((deIntptr)(dstElemPtr + scalarSize*compSize) - (deIntptr)dstBlockPtr.ptr <= (deIntptr)ds… in copyBufferVarData()
1542 deMemcpy(dstElemPtr, srcElemPtr, scalarSize*compSize); in copyBufferVarData()
1700 const int scalarSize = glu::getDataTypeScalarSize(resEntry.type); in compareBufferVarData() local
1767 …DE_ASSERT((deIntptr)(refElemPtr + scalarSize*compSize) - (deIntptr)refBlockPtr.ptr <= (deIntptr)re… in compareBufferVarData()
1768 …DE_ASSERT((deIntptr)(resElemPtr + scalarSize*compSize) - (deIntptr)resBlockPtr.ptr <= (deIntptr)re… in compareBufferVarData()
1770 const bool isOk = compareComponents(scalarType, resElemPtr, refElemPtr, scalarSize); in compareBufferVarData()