Home | History | Annotate | Download | only in Sema

Lines Matching refs:VectorTy

5378 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
5380 assert(VectorTy->isVectorType() && "Not a vector type!");
5383 if (!VectorTypesMatch(*this, Ty, VectorTy))
5388 << VectorTy << Ty << R;
5392 << VectorTy << Ty << R;
5971 QualType VectorTy = S.Context.getExtVectorType(ResTy, NumElements);
5976 // Since VectorTy is created internally, it does not pretty print
5988 LHS = S.ImpCastExprToType(LHS.get(), VectorTy, CK_VectorSplat);
5989 RHS = S.ImpCastExprToType(RHS.get(), VectorTy, CK_VectorSplat);
5991 return VectorTy;
7212 QualType vectorTy) {
7243 *scalar = S.ImpCastExprToType(scalar->get(), vectorTy, CK_VectorSplat);