Home
last modified time | relevance | path

Searched refs:matrixType (Results 1 – 19 of 19) sorted by relevance

/external/skqp/tools/lua/
Dbitmap_statistics.lua31 matrixType = matrix:getType()
32 if matrixType.perspective then
34 elseif matrixType.affine then
36 elseif matrixType.scale then
43 elseif matrixType.translate then
/external/angle/src/compiler/translator/TranslatorMetalDirect/
DAstHelpers.cpp344 TType &sh::DropColumns(const TType &matrixType) in DropColumns() argument
346 ASSERT(matrixType.isMatrix()); in DropColumns()
347 ASSERT(HasScalarBasicType(matrixType)); in DropColumns()
351 *new TType(matrixType.getBasicType(), matrixType.getPrecision(), matrixType.getQualifier(), in DropColumns()
352 matrixType.getRows(), 1, matrixType.getArraySizes(), mangledName); in DropColumns()
390 TType &sh::SetMatrixRowDim(const TType &matrixType, int newDim) in SetMatrixRowDim() argument
392 ASSERT(matrixType.isMatrix()); in SetMatrixRowDim()
394 return SetTypeDimsImpl(matrixType, matrixType.getCols(), newDim); in SetMatrixRowDim()
DAstHelpers.h126 TType &DropColumns(const TType &matrixType);
135 TType &SetMatrixRowDim(const TType &matrixType, int newDim);
/external/angle/src/tests/gl_tests/gles1/
DMatrixLoadTest.cpp90 auto matrixType = modeType.second; in TEST_P() local
94 glGetFloatv(matrixType, outputMatrix.data()); in TEST_P()
99 glGetFloatv(matrixType, outputMatrix.data()); in TEST_P()
/external/skqp/fuzz/
DFuzzCommon.cpp291 int matrixType; in FuzzNiceMatrix() local
292 fuzz->nextRange(&matrixType, 0, 4); in FuzzNiceMatrix()
293 switch (matrixType) { in FuzzNiceMatrix()
/external/skia/fuzz/
DFuzzCommon.cpp288 int matrixType; in FuzzNiceMatrix() local
289 fuzz->nextRange(&matrixType, 0, 4); in FuzzNiceMatrix()
290 switch (matrixType) { in FuzzNiceMatrix()
/external/llvm-project/mlir/lib/Dialect/SPIRV/
DSPIRVTypes.cpp202 if (auto matrixType = dyn_cast<MatrixType>()) in getNumElements() local
203 return matrixType.getNumColumns(); in getNumElements()
738 } else if (auto matrixType = dyn_cast<MatrixType>()) { in getExtensions() local
739 matrixType.getExtensions(extensions, storage); in getExtensions()
756 } else if (auto matrixType = dyn_cast<MatrixType>()) { in getCapabilities() local
757 matrixType.getCapabilities(capabilities, storage); in getCapabilities()
/external/llvm-project/clang/lib/AST/
DType.cpp285 MatrixType::MatrixType(TypeClass tc, QualType matrixType, QualType canonType, in MatrixType() argument
288 (RowExpr ? (matrixType->getDependence() | TypeDependence::Dependent | in MatrixType()
290 (matrixType->isVariablyModifiedType() in MatrixType()
293 (matrixType->containsUnexpandedParameterPack() || in MatrixType()
300 : matrixType->getDependence())), in MatrixType()
301 ElementType(matrixType) {} in MatrixType()
303 ConstantMatrixType::ConstantMatrixType(QualType matrixType, unsigned nRows, in ConstantMatrixType() argument
305 : ConstantMatrixType(ConstantMatrix, matrixType, nRows, nColumns, in ConstantMatrixType()
308 ConstantMatrixType::ConstantMatrixType(TypeClass tc, QualType matrixType, in ConstantMatrixType() argument
311 : MatrixType(tc, matrixType, canonType), NumRows(nRows), in ConstantMatrixType()
/external/skia/src/sksl/codegen/
DSkSLMetalCodeGenerator.cpp1061 const Type& matrixType = c.type(); in writeConstructorCompoundMatrix() local
1062 const Type& columnType = matrixType.componentType().toCompound( in writeConstructorCompoundMatrix()
1063 fContext, /*columns=*/matrixType.rows(), /*rows=*/1); in writeConstructorCompoundMatrix()
1065 this->writeType(matrixType); in writeConstructorCompoundMatrix()
1072 if (arg->type().columns() < matrixType.rows()) { in writeConstructorCompoundMatrix()
1081 if (scalarCount && scalarCount == matrixType.rows()) { in writeConstructorCompoundMatrix()
/external/deqp/modules/gles3/functional/
Des3fShaderMatrixTests.cpp1456 DataType matrixType = matNdx == 0 ? m_in0.dataType : m_in1.dataType; in init() local
1460 resultType = matrixType; in init()
1464 …peFloatVec(matNdx == 0 ? getDataTypeMatrixNumRows(matrixType) : getDataTypeMatrixNumColumns(matrix… in init()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderMatrixTests.cpp1718 DataType matrixType = matNdx == 0 ? m_in0.dataType : m_in1.dataType; in setupShader() local
1722 resultType = matrixType; in setupShader()
1726 …peFloatVec(matNdx == 0 ? getDataTypeMatrixNumRows(matrixType) : getDataTypeMatrixNumColumns(matrix… in setupShader()
DvktShaderRender.cpp1730 BaseAttributeType matrixType; in setupDefaultInputs() member
1759 if (matrices[matNdx].matrixType != m_enabledBaseAttributes[attrNdx].type) in setupDefaultInputs()
/external/deqp/modules/gles2/functional/
Des2fShaderMatrixTests.cpp804 DataType matrixType = matNdx == 0 ? m_in0.dataType : m_in1.dataType; in init() local
808 resultType = matrixType; in init()
/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/
DSerializer.cpp1281 if (auto matrixType = type.dyn_cast<spirv::MatrixType>()) { in prepareBasicType() local
1283 if (failed(processTypeImpl(loc, matrixType.getColumnType(), elementTypeID, in prepareBasicType()
1289 operands.push_back(matrixType.getNumColumns()); in prepareBasicType()
/external/guava/android/guava-tests/test/com/google/common/reflect/
DTypeTokenTest.java1489 TypeToken<?> matrixType = in testWildcardCaptured_field_upperBound() local
1491 assertEquals(List[].class, matrixType.getRawType()); in testWildcardCaptured_field_upperBound()
1492 assertThat(matrixType.getType()).isNotEqualTo(new TypeToken<List<?>[]>() {}.getType()); in testWildcardCaptured_field_upperBound()
/external/guava/guava-tests/test/com/google/common/reflect/
DTypeTokenTest.java1489 TypeToken<?> matrixType = in testWildcardCaptured_field_upperBound() local
1491 assertEquals(List[].class, matrixType.getRawType()); in testWildcardCaptured_field_upperBound()
1492 assertThat(matrixType.getType()).isNotEqualTo(new TypeToken<List<?>[]>() {}.getType()); in testWildcardCaptured_field_upperBound()
/external/angle/src/libANGLE/
DvalidationES.h292 GLenum matrixType,
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/
DGlslangToSpv.cpp185 …int getMatrixStride(const glslang::TType& matrixType, glslang::TLayoutPacking, glslang::TLayoutMat…
4788 int TGlslangToSpvTraverser::getMatrixStride(const glslang::TType& matrixType, glslang::TLayoutPacki… in getMatrixStride() argument
4792 elementType.shallowCopy(matrixType); in getMatrixStride()
/external/deqp-deps/glslang/SPIRV/
DGlslangToSpv.cpp183 …int getMatrixStride(const glslang::TType& matrixType, glslang::TLayoutPacking, glslang::TLayoutMat…
4455 int TGlslangToSpvTraverser::getMatrixStride(const glslang::TType& matrixType, glslang::TLayoutPacki… in getMatrixStride() argument
4459 elementType.shallowCopy(matrixType); in getMatrixStride()