Lines Matching refs:numVecs
493 const int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(basicType) in computeReferenceLayout() local
500 curOffset += numVecs*baseAlignment; in computeReferenceLayout()
542 const int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(elemBasicType) in computeReferenceLayout() local
552 entry.arrayStride = vecStride*numVecs; in computeReferenceLayout()
558 curOffset += numVecs*vecStride*type.getArraySize(); in computeReferenceLayout()
630 const int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(elemBasicType) in computeReferenceLayout() local
644 entry.arrayStride = stride*numVecs; in computeReferenceLayout()
650 curOffset += stride*numVecs*topLevelArraySize; in computeReferenceLayout()
735 …const int numVecs = isMatrix ? (entry.isRowMajor ? glu::getDataTypeMatrixNumRows(entry.type) :… in generateValue() local
736 const int vecSize = scalarSize / numVecs; in generateValue()
739 DE_ASSERT(scalarSize%numVecs == 0); in generateValue()
751 for (int vecNdx = 0; vecNdx < numVecs; vecNdx++) in generateValue()
2553 …const int numVecs = isMatrix ? (var.isRowMajor ? glu::getDataTypeMatrixNumRows(var.type) : g… in checkLayoutBounds() local
2566 minOffset = de::min(minOffset, (numVecs-1)*var.matrixStride); in checkLayoutBounds()
2568 …Offset, (topLevelSize-1)*topLevelStride + (numElements-1)*arrayStride + (numVecs-1)*var.matrixStri… in checkLayoutBounds()
2571 maxOffset = de::max(maxOffset, (numVecs-1)*var.matrixStride + vecSize); in checkLayoutBounds()
2574 …Offset, (topLevelSize-1)*topLevelStride + (numElements-1)*arrayStride + (numVecs-1)*var.matrixStri… in checkLayoutBounds()