Home
last modified time | relevance | path

Searched refs:getMatrixRows (Results 1 – 11 of 11) sorted by relevance

/external/deqp-deps/glslang/glslang/MachineIndependent/
DIntermediate.cpp407 child->getMatrixRows(), in addUnaryMath()
850 …Type(convertTo, EvqTemporary, node->getVectorSize(), node->getMatrixCols(), node->getMatrixRows()); in createConversion()
1408 …ype.getMatrixCols() != type.getMatrixCols() || sourceType.getMatrixRows() != type.getMatrixRows())… in addShapeConversion()
1409 …Type.getMatrixCols() >= type.getMatrixCols() && sourceType.getMatrixRows() >= type.getMatrixRows()) in addShapeConversion()
1413 …f (type.getVectorSize() == 4 && sourceType.getMatrixCols() == 2 && sourceType.getMatrixRows() == 2) in addShapeConversion()
1427 … if (sourceType.getVectorSize() == 4 && type.getMatrixCols() == 2 && type.getMatrixRows() == 2) in addShapeConversion()
2017 switch (type.getMatrixRows()) { in mapTypeToConstructorOp()
2025 switch (type.getMatrixRows()) { in mapTypeToConstructorOp()
2033 switch (type.getMatrixRows()) { in mapTypeToConstructorOp()
2056 switch (type.getMatrixRows()) { in mapTypeToConstructorOp()
[all …]
DparseConst.cpp88 matrixRows = node->getType().getMatrixRows(); in visitAggregate()
158 … if (r < node->getType().getMatrixRows() && c < node->getType().getMatrixCols()) { in visitConstantUnion()
159 int srcOffset = c * node->getType().getMatrixRows() + r; in visitConstantUnion()
Dreflection.cpp922 switch (type.getMatrixRows()) { in mapToGlType()
929 switch (type.getMatrixRows()) { in mapToGlType()
936 switch (type.getMatrixRows()) { in mapToGlType()
946 switch (type.getMatrixRows()) { in mapToGlType()
953 switch (type.getMatrixRows()) { in mapToGlType()
960 switch (type.getMatrixRows()) { in mapToGlType()
970 switch (type.getMatrixRows()) { in mapToGlType()
977 switch (type.getMatrixRows()) { in mapToGlType()
984 switch (type.getMatrixRows()) { in mapToGlType()
DConstant.cpp121 newComps = rightNode->getMatrixCols() * getMatrixRows(); in fold()
124 newComps = getMatrixRows(); in fold()
167 for (int row = 0; row < getMatrixRows(); row++) { in fold()
170 for (int i = 0; i < rightNode->getMatrixRows(); i++) in fold()
171 …sum += leftUnionArray[i * getMatrixRows() + row].getDConst() * rightUnionArray[column * rightNode-… in fold()
172 newConstArray[column * getMatrixRows() + row].setDConst(sum); in fold()
175 …lowCopy(TType(getType().getBasicType(), EvqConst, 0, rightNode->getMatrixCols(), getMatrixRows())); in fold()
265 for (int i = 0; i < getMatrixRows(); i++) { in fold()
268 … sum += leftUnionArray[j*getMatrixRows() + i].getDConst() * rightUnionArray[j].getDConst(); in fold()
273 returnType.shallowCopy(TType(getBasicType(), EvqConst, getMatrixRows())); in fold()
[all …]
DSymbolTable.cpp164 mangledName += static_cast<char>('0' + getMatrixRows()); in buildMangledName()
DlinkValidate.cpp1465 numComponents = type.getMatrixCols() * type.getMatrixRows(); in computeTypeXfbSize()
1661 size = stride * type.getMatrixRows(); in getBaseAlignment()
1737 size = stride * type.getMatrixRows(); in getScalarAlignment()
/external/deqp-deps/glslang/glslang/Include/
Dintermediate.h1141 virtual int getMatrixRows() const { return type.getMatrixRows(); } in getMatrixRows() function
DTypes.h1679 virtual int getMatrixRows() const { return matrixRows; } in getMatrixRows() function
/external/deqp-deps/glslang/glslang/HLSL/
DhlslParseHelper.cpp991 …if (! parseMatrixSwizzleSelector(loc, field, base->getMatrixCols(), base->getMatrixRows(), selecto… in handleDotDereference()
1012 int column = getMatrixComponentsColumn(base->getMatrixRows(), selectors); in handleDotDereference()
4815 typedArg->getMatrixRows(), in decomposeIntrinsic()
4884 arg0->getType().getMatrixRows(), in decomposeIntrinsic()
4891 std::max(arg0->getType().getMatrixRows(), 1); in decomposeIntrinsic()
5294 arg0->getMatrixRows()); in decomposeIntrinsic()
5616 0, arg0->getVectorSize(), arg1->getMatrixRows()); in addGenMulArgumentConversion()
5626 if (arg1->getVectorSize() < arg0->getMatrixRows()) { in addGenMulArgumentConversion()
5631 } else if (arg1->getVectorSize() > arg0->getMatrixRows()) { in addGenMulArgumentConversion()
5634 arg0->getMatrixRows()); in addGenMulArgumentConversion()
[all …]
DhlslGrammar.cpp1341 if ((txType.getMatrixCols() * txType.getMatrixRows()) > 4) { in acceptTextureType()
/external/deqp-deps/glslang/SPIRV/
DGlslangToSpv.cpp3902 spvType = builder.makeMatrixType(spvType, type.getMatrixCols(), type.getMatrixRows()); in convertGlslangToSpvType()