Searched refs:getMatrixCols (Results 1 – 13 of 13) sorted by relevance
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | Intermediate.cpp | 327 child->getMatrixCols(), in addUnaryMath() 712 …TType newType(convertTo, EvqTemporary, node->getVectorSize(), node->getMatrixCols(), node->getMatr… in createConversion() 1255 …if ((sourceType.getMatrixCols() != type.getMatrixCols() || sourceType.getMatrixRows() != type.getM… in addShapeConversion() 1256 …sourceType.getMatrixCols() >= type.getMatrixCols() && sourceType.getMatrixRows() >= type.getMatrix… in addShapeConversion() 1260 …if (type.getVectorSize() == 4 && sourceType.getMatrixCols() == 2 && sourceType.getMatrixRows() == … in addShapeConversion() 1274 … if (sourceType.getVectorSize() == 4 && type.getMatrixCols() == 2 && type.getMatrixRows() == 2) in addShapeConversion() 1860 switch (type.getMatrixCols()) { in mapTypeToConstructorOp() 1898 if (type.getMatrixCols()) { in mapTypeToConstructorOp() 1899 switch (type.getMatrixCols()) { in mapTypeToConstructorOp() 1936 if (type.getMatrixCols()) { in mapTypeToConstructorOp() [all …]
|
D | parseConst.cpp | 87 matrixCols = node->getType().getMatrixCols(); in visitAggregate() 158 … if (r < node->getType().getMatrixRows() && c < node->getType().getMatrixCols()) { in visitConstantUnion()
|
D | reflection.cpp | 610 switch (type.getMatrixCols()) { in mapToGlType() 634 switch (type.getMatrixCols()) { in mapToGlType() 659 switch (type.getMatrixCols()) { in mapToGlType()
|
D | ParseContextBase.cpp | 267 if (index >= type.getMatrixCols()) { in checkIndex() 269 index = type.getMatrixCols() - 1; in checkIndex()
|
D | Constant.cpp | 121 newComps = rightNode->getMatrixCols() * getMatrixRows(); in fold() 127 newComps = rightNode->getMatrixCols(); in fold() 168 for (int column = 0; column < rightNode->getMatrixCols(); column++) { in fold() 175 …e.shallowCopy(TType(getType().getBasicType(), EvqConst, 0, rightNode->getMatrixCols(), getMatrixRo… in fold() 274 for (int i = 0; i < rightNode->getMatrixCols(); i++) { in fold() 281 returnType.shallowCopy(TType(getBasicType(), EvqConst, rightNode->getMatrixCols())); in fold()
|
D | linkValidate.cpp | 1213 return type.getMatrixCols() * computeTypeLocationSize(columnType, stage); in computeTypeLocationSize() 1330 numComponents = type.getMatrixCols() * type.getMatrixRows(); in computeTypeXfbSize() 1513 size = stride * type.getMatrixCols(); in getBaseAlignment() 1589 size = stride * type.getMatrixCols(); in getScalarAlignment()
|
D | SymbolTable.cpp | 151 mangledName += static_cast<char>('0' + getMatrixCols()); in buildMangledName()
|
D | ParseHelper.cpp | 1396 length = type.getMatrixCols(); in handleLengthMethod() 6476 if (type.getMatrixCols() != (int)initList->getSequence().size()) { in convertInitializerList() 6481 for (int i = 0; i < type.getMatrixCols(); ++i) { in convertInitializerList()
|
/external/deqp-deps/glslang/hlsl/ |
D | hlslParseHelper.cpp | 995 …if (! parseMatrixSwizzleSelector(loc, field, base->getMatrixCols(), base->getMatrixRows(), selecto… in handleDotDereference() 4670 typedArg->getMatrixCols(), in decomposeIntrinsic() 4739 arg0->getType().getMatrixCols(), in decomposeIntrinsic() 4746 std::max(arg0->getType().getMatrixCols(), 1) * in decomposeIntrinsic() 5149 … const TType boolType(EbtBool, EvqTemporary, arg0->getVectorSize(), arg0->getMatrixCols(), in decomposeIntrinsic() 5470 if (arg0->getVectorSize() < arg1->getMatrixCols()) { in addGenMulArgumentConversion() 5475 } else if (arg0->getVectorSize() > arg1->getMatrixCols()) { in addGenMulArgumentConversion() 5478 arg1->getMatrixCols()); in addGenMulArgumentConversion() 5486 0, arg0->getMatrixCols(), arg1->getVectorSize()); in addGenMulArgumentConversion() 5497 if (arg0->getMatrixRows() > arg1->getMatrixCols()) { in addGenMulArgumentConversion() [all …]
|
D | hlslGrammar.cpp | 1328 if ((txType.getMatrixCols() * txType.getMatrixRows()) > 4) { in acceptTextureType()
|
/external/deqp-deps/glslang/glslang/Include/ |
D | intermediate.h | 1084 virtual int getMatrixCols() const { return type.getMatrixCols(); } in getMatrixCols() function
|
D | Types.h | 1484 virtual int getMatrixCols() const { return matrixCols; } in getMatrixCols() function
|
/external/deqp-deps/glslang/SPIRV/ |
D | GlslangToSpv.cpp | 3086 spvType = builder.makeMatrixType(spvType, type.getMatrixCols(), type.getMatrixRows()); in convertGlslangToSpvType() 7487 for (int col = 0; col < glslangType.getMatrixCols(); ++col)
|