Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Target/
DTargetCallingConv.td121 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;
/external/clang/lib/CodeGen/
DItaniumCXXABI.cpp682 const MemberPointerType *destTy = in EmitMemberPointerConversion() local
687 if (destTy->isMemberDataPointer()) { in EmitMemberPointerConversion()
733 const MemberPointerType *destTy = in EmitMemberPointerConversion() local
738 if (destTy->isMemberDataPointer()) { in EmitMemberPointerConversion()
/external/clang/lib/Sema/
DSemaExpr.cpp5536 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) { in areLaxCompatibleVectorTypes() argument
5537 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() argument
5564 assert(destTy->isVectorType() || srcTy->isVectorType()); in isLaxVectorConversion()
5568 return areLaxCompatibleVectorTypes(srcTy, destTy); in isLaxVectorConversion()