Home
last modified time | relevance | path

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

/external/angle/src/common/
Dutilities.h155 bool isMatrixType,
171 bool isMatrixType; member
188 bool isMatrixType, in UniformTypeInfo() argument
203 isMatrixType(isMatrixType), in UniformTypeInfo()
/external/deqp-deps/glslang/SPIRV/
DSpvBuilder.h209 bool isMatrix(Id resultId) const { return isMatrixType(getTypeId(resultId)); } in isMatrix()
226 bool isMatrixType(Id typeId) const { return getTypeClass(typeId) == OpTypeMatrix; } in isMatrixType() function
267 assert(isMatrixType(typeId)); in getTypeNumColumns()
273 assert(isMatrixType(typeId)); in getTypeNumRows()
DGlslangToSpv.cpp2195 } else if (builder.isMatrixType(objectTypeId)) { in translateForcedType()
5970 if (builder.isMatrixType(typeId)) in createUnaryOperation()
6718 if (builder.isMatrixType(destType)) in createConversion()
DSpvBuilder.cpp2322 assert(isAggregateType(valueType) || isMatrixType(valueType)); in createCompositeCompare()
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/
DSpvBuilder.h209 bool isMatrix(Id resultId) const { return isMatrixType(getTypeId(resultId)); } in isMatrix()
226 bool isMatrixType(Id typeId) const { return getTypeClass(typeId) == OpTypeMatrix; } in isMatrixType() function
267 assert(isMatrixType(typeId)); in getTypeNumColumns()
273 assert(isMatrixType(typeId)); in getTypeNumRows()
DGlslangToSpv.cpp2346 } else if (builder.isMatrixType(objectTypeId)) { in translateForcedType()
6306 if (builder.isMatrixType(typeId)) in createUnaryOperation()
7054 if (builder.isMatrixType(destType)) in createConversion()
DSpvBuilder.cpp2322 assert(isAggregateType(valueType) || isMatrixType(valueType)); in createCompositeCompare()
/external/deqp/external/vulkancts/modules/vulkan/ray_tracing/
DvktRayTracingMiscTests.cpp4326 const auto isMatrixType = isMatrix (currentItem.type); in verifyResultBuffer() local
4334 …const auto expectedComponentDataPtr = expectedDataPtr + ((!isMatrixType) ? componentSize * nCompon… in verifyResultBuffer()
4336 … const auto resultComponentDataPtr = resultDataPtr + ((!isMatrixType) ? componentSize * nComponent in verifyResultBuffer()
5427 const bool isMatrixType = isMatrix (currentTestItem.type); in initTestItems() local
5541 if (isMatrixType) in initTestItems()
/external/llvm-project/clang/include/clang/AST/
DType.h2035 bool isMatrixType() const; // Matrix type.
6753 inline bool Type::isMatrixType() const {
/external/llvm-project/clang/lib/Sema/
DSemaOverload.cpp8031 } else if (Ty->isMatrixType()) { in AddTypesConvertedFrom()
DSemaExpr.cpp4661 if (base->getType()->isMatrixType()) { in ActOnArraySubscriptExpr()