Lines Matching refs:numVecs

498 			const int	numVecs				= isRowMajor ? glu::getDataTypeMatrixNumRows(basicType)  in computeReferenceLayout()  local
505 curOffset += numVecs*baseAlignment; in computeReferenceLayout()
547 const int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(elemBasicType) in computeReferenceLayout() local
557 entry.arrayStride = vecStride*numVecs; in computeReferenceLayout()
563 curOffset += numVecs*vecStride*type.getArraySize(); in computeReferenceLayout()
635 const int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(elemBasicType) in computeReferenceLayout() local
649 entry.arrayStride = stride*numVecs; in computeReferenceLayout()
655 curOffset += stride*numVecs*topLevelArraySize; in computeReferenceLayout()
740 …const int numVecs = isMatrix ? (entry.isRowMajor ? glu::getDataTypeMatrixNumRows(entry.type) :… in generateValue() local
741 const int vecSize = scalarSize / numVecs; in generateValue()
744 DE_ASSERT(scalarSize%numVecs == 0); in generateValue()
756 for (int vecNdx = 0; vecNdx < numVecs; vecNdx++) in generateValue()
2544 …const int numVecs = isMatrix ? (var.isRowMajor ? glu::getDataTypeMatrixNumRows(var.type) : g… in checkLayoutBounds() local
2557 minOffset = de::min(minOffset, (numVecs-1)*var.matrixStride); in checkLayoutBounds()
2559 …Offset, (topLevelSize-1)*topLevelStride + (numElements-1)*arrayStride + (numVecs-1)*var.matrixStri… in checkLayoutBounds()
2562 maxOffset = de::max(maxOffset, (numVecs-1)*var.matrixStride + vecSize); in checkLayoutBounds()
2565 …Offset, (topLevelSize-1)*topLevelStride + (numElements-1)*arrayStride + (numVecs-1)*var.matrixStri… in checkLayoutBounds()