Home
last modified time | relevance | path

Searched refs:areCompatibleVectorTypes (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h2335 bool areCompatibleVectorTypes(QualType FirstVec, QualType SecondVec);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp2046 if (S.Context.areCompatibleVectorTypes(FromType, ToType) || in IsVectorConversion()
2052 !S.Context.areCompatibleVectorTypes(FromType, ToType) && in IsVectorConversion()
2847 Context.areCompatibleVectorTypes(FromPointeeType, ToPointeeType)) { in IsPointerConversion()
4489 bool SCS1IsCompatibleVectorConversion = S.Context.areCompatibleVectorTypes( in CompareStandardConversionSequences()
4491 bool SCS2IsCompatibleVectorConversion = S.Context.areCompatibleVectorTypes( in CompareStandardConversionSequences()
H A DSemaExpr.cpp9192 if (Context.areCompatibleVectorTypes(LHSType, RHSType)) { in CheckAssignmentConstraints()
9206 !Context.areCompatibleVectorTypes(RHSType, LHSType)) in CheckAssignmentConstraints()
10104 Context.areCompatibleVectorTypes(LHSType, RHSType)) { in CheckVectorOperands()
10245 !Context.areCompatibleVectorTypes(RHSType, LHSType)) in CheckVectorOperands()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9861 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec, in areCompatibleVectorTypes() function in ASTContext