Home
last modified time | relevance | path

Searched refs:DestType (Results 1 – 25 of 33) sorted by relevance

12

/external/clang/lib/Sema/
DSemaCast.cpp52 : Self(S), SrcExpr(src), DestType(destType), in CastOperation()
67 QualType DestType; member
120 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange); in checkCastAlign()
127 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) == in checkObjCARCConversion()
158 QualType DestType, bool CStyle,
163 QualType DestType, bool CStyle,
169 QualType DestType, bool CStyle,
175 CanQualType DestType, bool CStyle,
183 QualType DestType,bool CStyle,
190 QualType DestType,
[all …]
DSemaInit.cpp3409 QualType DestType, in TryInitializerListConstruction() argument
3413 if (!S.isStdInitializerList(DestType, &E)) in TryInitializerListConstruction()
3433 Sequence.AddStdInitializerListConstructionStep(DestType); in TryInitializerListConstruction()
3514 MultiExprArg Args, QualType DestType, in TryConstructorInitialization() argument
3522 if (!S.isCompleteType(Kind.getLocation(), DestType)) { in TryConstructorInitialization()
3523 Sequence.setIncompleteTypeFailure(DestType); in TryConstructorInitialization()
3527 const RecordType *DestRecordType = DestType->getAs<RecordType>(); in TryConstructorInitialization()
3627 Best->FoundDecl, CtorDecl, DestType, HadMultipleCandidates, in TryConstructorInitialization()
3693 QualType DestType = Entity.getType(); in TryReferenceListInitialization() local
3694 QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType(); in TryReferenceListInitialization()
[all …]
DSemaExpr.cpp2584 QualType DestType; in PerformObjectMemberConversion() local
2592 DestType = Context.getPointerType(DestRecordType); in PerformObjectMemberConversion()
2596 DestType = DestRecordType; in PerformObjectMemberConversion()
2603 DestType = Method->getThisType(Context); in PerformObjectMemberConversion()
2604 DestRecordType = DestType->getPointeeType(); in PerformObjectMemberConversion()
2611 DestType = DestRecordType; in PerformObjectMemberConversion()
2618 if (DestType->isDependentType() || FromType->isDependentType()) in PerformObjectMemberConversion()
2719 return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase, in PerformObjectMemberConversion()
14531 QualType DestType; member
14534 : S(S), DestType(CastType) {} in RebuildUnknownAnyExpr()
[all …]
DSemaExprObjC.cpp3845 QualType DestType, QualType SrcType, in checkObjCBridgeRelatedComponents() argument
3851 QualType T = CfToNs ? SrcType : DestType; in checkObjCBridgeRelatedComponents()
3868 << SrcType << DestType; in checkObjCBridgeRelatedComponents()
3879 << SrcType << DestType; in checkObjCBridgeRelatedComponents()
3894 << SrcType << DestType << Sel << false; in checkObjCBridgeRelatedComponents()
3908 << SrcType << DestType << Sel << true; in checkObjCBridgeRelatedComponents()
3919 QualType DestType, QualType SrcType, in CheckObjCBridgeRelatedConversions() argument
3922 ARCConversionTypeClass lhsExprACTC = classifyTypeForARCConversion(DestType); in CheckObjCBridgeRelatedConversions()
3932 if (!checkObjCBridgeRelatedComponents(Loc, DestType, SrcType, RelatedClass, in CheckObjCBridgeRelatedConversions()
3948 << SrcType << DestType << ClassMethod->getSelector() << false in CheckObjCBridgeRelatedConversions()
[all …]
/external/libgav1/libgav1/src/dsp/x86/
Dwarp_sse4.cc168 template <bool is_compound, typename DestType>
170 int delta, DestType* dest_row, in VerticalFilter()
189 template <bool is_compound, typename DestType>
191 int delta, DestType* dest_row, in VerticalFilter()
210 template <bool is_compound, typename DestType>
213 DestType* dst_row, ptrdiff_t dest_stride) { in WarpRegion1()
238 const DestType* const first_dst_row = dst_row; in WarpRegion1()
246 template <bool is_compound, typename DestType>
250 DestType* dst_row, ptrdiff_t dest_stride) { in WarpRegion2()
281 VerticalFilter<is_compound, DestType>(intermediate_result_column, y4, gamma, in WarpRegion2()
[all …]
/external/libgav1/libgav1/src/dsp/
Dwarp.cc99 using DestType = in Warp_C() typedef
101 auto* dst = static_cast<DestType*>(dest); in Warp_C()
192 DestType* dst_row = dst + start_x - block_start_x; in Warp_C()
201 const DestType* const first_dst_row = dst_row; in Warp_C()
229 DestType* dst_row = dst + start_x - block_start_x; in Warp_C()
248 dst_row[x] = static_cast<DestType>(sum); in Warp_C()
250 dst_row[x] = static_cast<DestType>(Clip3(sum, 0, kMaxPixel)); in Warp_C()
369 DestType* dst_row = dst + start_x - block_start_x; in Warp_C()
415 dst_row[x] = static_cast<DestType>(sum); in Warp_C()
417 dst_row[x] = static_cast<DestType>(Clip3(sum, 0, kMaxPixel)); in Warp_C()
/external/angle/src/libANGLE/renderer/vulkan/shaders/src/
DImageCopy.frag34 #define DestType vec4
36 #define DestType ivec4
38 #define DestType uvec4
44 layout(location = 0) out DestType dest;
93 DestType destValue = DestType(srcValue);
DConvertVertex.comp90 #define DestType int
93 #define DestType uint
98 #define DestType float
310 DestType convertComponent(SrcType srcValue)
317 uint makeDestinationComponent(uint cd, DestType value)
365 DestType destValue = convertComponent(srcValue);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
DWebAssemblyAddMissingPrototypes.cpp94 FunctionType *DestType = in runOnModule() local
98 NewType = DestType; in runOnModule()
115 FunctionType *DestType = in runOnModule() local
117 if (NewType != DestType) { in runOnModule()
/external/angle/src/image_util/
Dcopyimage.inc32 template <typename DestType>
35 DestType::WriteDepthStencil(reinterpret_cast<DestType *>(dest),
Dcopyimage.h30 template <typename DestType>
/external/libgav1/libgav1/src/dsp/arm/
Dwarp_neon.cc129 using DestType = in Warp_NEON() typedef
131 auto* dst = static_cast<DestType*>(dest); in Warp_NEON()
222 DestType* dst_row = dst + start_x - block_start_x; in Warp_NEON()
258 DestType* dst_row = dst + start_x - block_start_x; in Warp_NEON()
390 DestType* dst_row = dst + start_x - block_start_x; in Warp_NEON()
/external/libbrillo/brillo/
Dany.h76 template<typename DestType>
85 using CanonicalDestType = typename std::decay<DestType>::type; in IsTypeCompatible()
/external/clang/lib/CodeGen/
DCGExprConstant.cpp1238 QualType DestType, in EmitConstantExpr() argument
1244 if (DestType->isReferenceType()) in EmitConstantExpr()
1251 C = EmitConstantValue(Result.Val, DestType, CGF); in EmitConstantExpr()
1263 QualType DestType, in EmitConstantValue() argument
1266 if (auto *AT = DestType->getAs<AtomicType>()) { in EmitConstantValue()
1271 uint64_t OuterSize = Context.getTypeSize(DestType); in EmitConstantValue()
1288 llvm::Type *DestTy = getTypes().ConvertTypeForMem(DestType); in EmitConstantValue()
1400 llvm::Type *ResultType = getTypes().ConvertType(DestType); in EmitConstantValue()
1412 return ConstStructBuilder::BuildStruct(*this, CGF, Value, DestType); in EmitConstantValue()
1414 const ArrayType *CAT = Context.getAsArrayType(DestType); in EmitConstantValue()
[all …]
DCGExprComplex.cpp88 QualType DestType, SourceLocation Loc);
91 QualType DestType, SourceLocation Loc);
397 QualType DestType, in EmitComplexToComplexCast() argument
401 DestType = DestType->castAs<ComplexType>()->getElementType(); in EmitComplexToComplexCast()
406 Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType, Loc); in EmitComplexToComplexCast()
407 Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType, Loc); in EmitComplexToComplexCast()
413 QualType DestType, in EmitScalarToComplexCast() argument
416 DestType = DestType->castAs<ComplexType>()->getElementType(); in EmitScalarToComplexCast()
417 Val = CGF.EmitScalarConversion(Val, SrcType, DestType, Loc); in EmitScalarToComplexCast()
DCodeGenModule.h910 llvm::Constant *EmitConstantExpr(const Expr *E, QualType DestType,
915 llvm::Constant *EmitConstantValue(const APValue &Value, QualType DestType,
921 QualType DestType,
/external/eigen/Eigen/src/Householder/
DHouseholderSequence.h233 template<typename DestType> inline void evalTo(DestType& dst) const
235 Matrix<Scalar, DestType::RowsAtCompileTime, 1,
236 AutoAlign|ColMajor, DestType::MaxRowsAtCompileTime, 1> workspace(rows());
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DDGMRES.h209 template<typename RhsType, typename DestType>
210 int dgmresApplyDeflation(const RhsType& In, DestType& Out) const;
504 template<typename RhsType, typename DestType>
505 int DGMRES<_MatrixType, _Preconditioner>::dgmresApplyDeflation(const RhsType &x, DestType &y) const
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp442 Type *DestType = Trunc.getType(); in foldVecTruncToExtElt() local
443 if (!TruncOp->hasOneUse() || !isa<IntegerType>(DestType)) in foldVecTruncToExtElt()
456 unsigned DestWidth = DestType->getPrimitiveSizeInBits(); in foldVecTruncToExtElt()
465 if (VecType->getElementType() != DestType) { in foldVecTruncToExtElt()
466 VecType = VectorType::get(DestType, NumVecElts); in foldVecTruncToExtElt()
1781 Type *DestType = BitCast.getType(); in canonicalizeBitCastExtElt() local
1782 if (!VectorType::isValidElementType(DestType)) in canonicalizeBitCastExtElt()
1786 auto *NewVecType = VectorType::get(DestType, NumElts); in canonicalizeBitCastExtElt()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp459 Type *DestType = Trunc.getType(); in foldVecTruncToExtElt() local
460 if (!TruncOp->hasOneUse() || !isa<IntegerType>(DestType)) in foldVecTruncToExtElt()
473 unsigned DestWidth = DestType->getPrimitiveSizeInBits(); in foldVecTruncToExtElt()
482 if (VecType->getElementType() != DestType) { in foldVecTruncToExtElt()
483 VecType = VectorType::get(DestType, NumVecElts); in foldVecTruncToExtElt()
2007 Type *DestType = BitCast.getType(); in canonicalizeBitCastExtElt() local
2008 if (!VectorType::isValidElementType(DestType)) in canonicalizeBitCastExtElt()
2012 auto *NewVecType = VectorType::get(DestType, NumElts); in canonicalizeBitCastExtElt()
/external/clang/lib/AST/
DExprCXX.cpp571 QualType DestType = getType(); in isAlwaysNull() local
575 DestType = DestType->castAs<PointerType>()->getPointeeType(); in isAlwaysNull()
578 if (DestType->isVoidType()) in isAlwaysNull()
588 cast<CXXRecordDecl>(DestType->castAs<RecordType>()->getDecl()); in isAlwaysNull()
DExprConstant.cpp1651 const T &SrcValue, QualType DestType) { in HandleOverflow() argument
1653 << SrcValue << DestType; in HandleOverflow()
1659 QualType DestType, APSInt &Result) { in HandleFloatToIntCast() argument
1660 unsigned DestWidth = Info.Ctx.getIntWidth(DestType); in HandleFloatToIntCast()
1662 bool DestSigned = DestType->isSignedIntegerOrEnumerationType(); in HandleFloatToIntCast()
1668 return HandleOverflow(Info, E, Value, DestType); in HandleFloatToIntCast()
1673 QualType SrcType, QualType DestType, in HandleFloatToFloatCast() argument
1677 if (Result.convert(Info.Ctx.getFloatTypeSemantics(DestType), in HandleFloatToFloatCast()
1680 return HandleOverflow(Info, E, Value, DestType); in HandleFloatToFloatCast()
1685 QualType DestType, QualType SrcType, in HandleIntToIntCast() argument
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DNullabilityChecker.cpp960 QualType DestType = CE->getType(); in checkPostStmt() local
963 if (!DestType->isAnyPointerType()) in checkPostStmt()
970 Nullability DestNullability = getNullabilityAnnotation(DestType); in checkPostStmt()
DDynamicTypePropagation.cpp528 QualType DestType = CE->getType(); in checkPostStmt() local
531 const auto *DestObjectPtrType = DestType->getAs<ObjCObjectPointerType>(); in checkPostStmt()
/external/swiftshader/third_party/subzero/src/
DPNaClTranslator.cpp2364 Ice::Type DestType = getCompareResultType(Op1Type); in ProcessRecord() local
2371 appendErrorInstruction(DestType); in ProcessRecord()
2374 if (DestType == Ice::IceType_void) { in ProcessRecord()
2381 Ice::Variable *Dest = getNextInstVar(DestType); in ProcessRecord()
2390 appendErrorInstruction(DestType); in ProcessRecord()
2402 appendErrorInstruction(DestType); in ProcessRecord()
2412 appendErrorInstruction(DestType); in ProcessRecord()

12