Searched refs:destTy (Results 1 – 3 of 3) sorted by relevance
121 class CCPromoteToType<ValueType destTy> : CCAction {122 ValueType DestTy = destTy;127 class CCPromoteToUpperBitsInType<ValueType destTy> : CCAction {128 ValueType DestTy = destTy;133 class CCBitConvertToType<ValueType destTy> : CCAction {134 ValueType DestTy = destTy;139 class CCPassIndirect<ValueType destTy> : CCAction {140 ValueType DestTy = destTy;
682 const MemberPointerType *destTy = in EmitMemberPointerConversion() local687 if (destTy->isMemberDataPointer()) { in EmitMemberPointerConversion()733 const MemberPointerType *destTy = in EmitMemberPointerConversion() local738 if (destTy->isMemberDataPointer()) { in EmitMemberPointerConversion()
5536 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) { in areLaxCompatibleVectorTypes() argument5537 assert(destTy->isVectorType() || srcTy->isVectorType()); in areLaxCompatibleVectorTypes()5544 if (srcTy->isScalarType() && destTy->isExtVectorType()) return false; in areLaxCompatibleVectorTypes()5545 if (destTy->isScalarType() && srcTy->isExtVectorType()) return false; in areLaxCompatibleVectorTypes()5550 if (!breakDownVectorType(destTy, destLen, destEltTy)) return false; in areLaxCompatibleVectorTypes()5563 bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) { in isLaxVectorConversion() argument5564 assert(destTy->isVectorType() || srcTy->isVectorType()); in isLaxVectorConversion()5568 return areLaxCompatibleVectorTypes(srcTy, destTy); in isLaxVectorConversion()