Home
last modified time | relevance | path

Searched refs:srcTy (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp7329 bool Sema::isValidSveBitcast(QualType srcTy, QualType destTy) { in isValidSveBitcast() argument
7330 assert(srcTy->isVectorType() || destTy->isVectorType()); in isValidSveBitcast()
7341 return ValidScalableConversion(srcTy, destTy) || in isValidSveBitcast()
7342 ValidScalableConversion(destTy, srcTy); in isValidSveBitcast()
7347 bool Sema::areMatrixTypesOfTheSameDimension(QualType srcTy, QualType destTy) { in areMatrixTypesOfTheSameDimension() argument
7348 if (!destTy->isMatrixType() || !srcTy->isMatrixType()) in areMatrixTypesOfTheSameDimension()
7351 const ConstantMatrixType *matSrcType = srcTy->getAs<ConstantMatrixType>(); in areMatrixTypesOfTheSameDimension()
7384 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) { in areLaxCompatibleVectorTypes() argument
7385 assert(destTy->isVectorType() || srcTy->isVectorType()); in areLaxCompatibleVectorTypes()
7392 if (srcTy->isScalarType() && destTy->isExtVectorType()) return false; in areLaxCompatibleVectorTypes()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp2213 Type *srcTy = V->getType(); in CreateShadowCast() local
2214 size_t srcSizeInBits = VectorOrPrimitiveTypeSizeInBits(srcTy); in CreateShadowCast()
2219 if (dstTy->isIntegerTy() && srcTy->isIntegerTy()) in CreateShadowCast()
2221 if (dstTy->isVectorTy() && srcTy->isVectorTy() && in CreateShadowCast()
2223 cast<FixedVectorType>(srcTy)->getNumElements()) in CreateShadowCast()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h11644 bool areMatrixTypesOfTheSameDimension(QualType srcTy, QualType destTy);