Searched defs:SrcType (Results 1 - 20 of 20) sorted by relevance

/external/gemmlowp/internal/
H A Ddispatch_gemm_shape.h55 typedef VectorMap<Scalar, Shape> SrcType; typedef in struct:gemmlowp::TransposeImpl
59 static DstType Run(const SrcType& src) {
66 typedef MatrixMap<Scalar, Order> SrcType; typedef in struct:gemmlowp::TransposeImpl
69 static DstType Run(const SrcType& src) {
76 typedef OutputStageQuantizeDownInt32ToUint8ScalePC<Shape> SrcType; typedef in struct:gemmlowp::TransposeImpl
79 static DstType Run(const SrcType& src) {
90 typedef OutputStageBiasAddition<VectorMapType> SrcType; typedef in struct:gemmlowp::TransposeImpl
93 static DstType Run(const SrcType& src) {
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorConversion.h127 typedef typename internal::unpacket_traits<SrcPacket>::type SrcType; typedef
129 internal::scalar_cast_op<SrcType, TgtType> converter;
189 typedef typename internal::remove_all<typename internal::traits<ArgType>::Scalar>::type SrcType; typedef in struct:Eigen::TensorEvaluator
191 typedef typename PacketType<SrcType, Device>::type PacketSourceType;
210 return ConversionSubExprEval<internal::is_same<TargetType, SrcType>::value, TensorEvaluator<ArgType, Device>, Scalar>::run(m_impl, data);
220 internal::scalar_cast_op<SrcType, TargetType> converter;
228 internal::type_casting_traits<SrcType, TargetType>::VectorizedCast;
234 const double cast_cost = TensorOpCost::CastCost<SrcType, TargetType>();
237 internal::type_casting_traits<SrcType, TargetType>::SrcCoeffRatio;
239 internal::type_casting_traits<SrcType, TargetTyp
[all...]
/external/skia/gm/
H A Dxfermodes.cpp14 enum SrcType { enum
120 void draw_mode(SkCanvas* canvas, SkBlendMode mode, SrcType srcType, SkScalar x, SkScalar y) {
251 draw_mode(canvas, gModes[i].fMode, static_cast<SrcType>(sourceType),
/external/swiftshader/third_party/subzero/src/
H A DIceInstMIPS32.cpp645 const Type SrcType = Src->getType(); local
648 if ((isScalarIntegerType(DstType) && isScalarFloatingType(SrcType)) ||
649 (isScalarFloatingType(DstType) && isScalarIntegerType(SrcType))) {
H A DIceAssemblerMIPS32.cpp797 const Type SrcType = OpRs->getType(); local
799 if ((isScalarIntegerType(DstType) && isScalarFloatingType(SrcType)) ||
800 (isScalarFloatingType(DstType) && isScalarIntegerType(SrcType))) {
H A DIceTargetLoweringMIPS32.cpp335 const Type SrcType = Src0->getType(); local
341 for (SizeT I = 0; I < typeNumElements(SrcType); ++I) {
343 auto *Op0 = Func->makeVariable(typeElementType(SrcType));
345 auto *Op1 = Func->makeVariable(typeElementType(SrcType));
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_compiler_util.c364 unsigned int SrcType; member in struct:src_select
385 select->SrcType = src_type;
484 unsigned int src_type = d.Selects[i].SrcType;
488 src_type &= ~d.Selects[j].SrcType;
/external/clang/lib/AST/
H A DExprCXX.cpp570 QualType SrcType = getSubExpr()->getType(); local
573 if (const PointerType *SrcPTy = SrcType->getAs<PointerType>()) {
574 SrcType = SrcPTy->getPointeeType();
582 cast<CXXRecordDecl>(SrcType->castAs<RecordType>()->getDecl());
H A DExprConstant.cpp1658 QualType SrcType, const APFloat &Value,
1673 QualType SrcType, QualType DestType,
1685 QualType DestType, QualType SrcType,
1697 QualType SrcType, const APSInt &Value,
8022 QualType SrcType = SubExpr->getType(); local
8103 return Info.Ctx.getTypeSize(DestType) <= Info.Ctx.getTypeSize(SrcType);
8105 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
8108 return Success(HandleIntToIntCast(Info, E, DestType, SrcType,
8124 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
8133 SrcType);
1657 HandleFloatToIntCast(EvalInfo &Info, const Expr *E, QualType SrcType, const APFloat &Value, QualType DestType, APSInt &Result) argument
1672 HandleFloatToFloatCast(EvalInfo &Info, const Expr *E, QualType SrcType, QualType DestType, APFloat &Result) argument
1684 HandleIntToIntCast(EvalInfo &Info, const Expr *E, QualType DestType, QualType SrcType, const APSInt &Value) argument
1696 HandleIntToFloatCast(EvalInfo &Info, const Expr *E, QualType SrcType, const APSInt &Value, QualType DestType, APFloat &Result) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGExprComplex.cpp87 ComplexPairTy EmitComplexToComplexCast(ComplexPairTy Val, QualType SrcType,
90 ComplexPairTy EmitScalarToComplexCast(llvm::Value *Val, QualType SrcType,
396 QualType SrcType,
400 SrcType = SrcType->castAs<ComplexType>()->getElementType();
406 Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType, Loc);
407 Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType, Loc);
412 QualType SrcType,
417 Val = CGF.EmitScalarConversion(Val, SrcType, DestType, Loc);
395 EmitComplexToComplexCast(ComplexPairTy Val, QualType SrcType, QualType DestType, SourceLocation Loc) argument
411 EmitScalarToComplexCast(llvm::Value *Val, QualType SrcType, QualType DestType, SourceLocation Loc) argument
H A DCGExprScalar.cpp146 Value *Src, QualType SrcType, QualType DstType,
578 Value *ScalarExprEmitter::EmitConversionToBool(Value *Src, QualType SrcType) { argument
579 assert(SrcType.isCanonical() && "EmitScalarConversion strips typedefs");
581 if (SrcType->isRealFloatingType())
584 if (const MemberPointerType *MPT = dyn_cast<MemberPointerType>(SrcType))
587 assert((SrcType->isIntegerType() || isa<llvm::PointerType>(Src->getType())) &&
598 Value *OrigSrc, QualType OrigSrcType, Value *Src, QualType SrcType,
671 CGF.getContext().getFloatTypeSemantics(SrcType);
732 Value *ScalarExprEmitter::EmitScalarConversion(Value *Src, QualType SrcType, argument
735 return EmitScalarConversion(Src, SrcType, DstTyp
597 EmitFloatConversionCheck( Value *OrigSrc, QualType OrigSrcType, Value *Src, QualType SrcType, QualType DstType, llvm::Type *DstTy, SourceLocation Loc) argument
738 EmitScalarConversion(Value *Src, QualType SrcType, QualType DstType, SourceLocation Loc, bool TreatBooleanAsSigned) argument
1041 QualType SrcType = E->getSrcExpr()->getType(), local
[all...]
H A DCGStmtOpenMP.cpp2782 QualType SrcType, QualType DestType,
2788 ? CGF.EmitScalarConversion(Val.getScalarVal(), SrcType, DestType,
2790 : CGF.EmitComplexToScalarConversion(Val.getComplexVal(), SrcType,
2795 convertToComplexValue(CodeGenFunction &CGF, RValue Val, QualType SrcType, argument
2803 auto ScalarVal = CGF.EmitScalarConversion(Val.getScalarVal(), SrcType,
2809 auto SrcElementType = SrcType->castAs<ComplexType>()->getElementType();
2781 convertToScalarValue(CodeGenFunction &CGF, RValue Val, QualType SrcType, QualType DestType, SourceLocation Loc) argument
/external/clang/lib/Sema/
H A DSema.cpp352 QualType SrcType,
354 Optional<NullabilityKind> ExprNullability = SrcType->getNullability(Context);
362 Diag(Loc, diag::warn_nullability_lost) << SrcType << DstType;
351 diagnoseNullableToNonnullConversion(QualType DstType, QualType SrcType, SourceLocation Loc) argument
H A DSemaCast.cpp168 static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
174 static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
182 QualType SrcType,
478 /// CastsAwayConstness - Check if the pointer conversion from SrcType to
487 CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType, argument
502 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() ||
503 SrcType->isBlockPointerType()) &&
509 QualType UnwrappedSrcType = Self.Context.getCanonicalType(SrcType),
623 QualType SrcType local
749 QualType SrcType = SrcExpr->getType(); local
1227 TryStaticPointerDowncast(Sema &Self, QualType SrcType, QualType DestType, bool CStyle, SourceRange OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) argument
1261 TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType, bool CStyle, SourceRange OpRange, QualType OrigSrcType, QualType OrigDestType, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) argument
1373 TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, QualType SrcType, QualType DestType, bool CStyle, SourceRange OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) argument
1547 QualType SrcType = SrcExpr.get()->getType(); local
1660 CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType, bool IsDereference, SourceRange Range) argument
1712 QualType SrcType = SrcExpr.get()->getType(); local
1733 QualType SrcType = SrcExpr.get()->getType(); local
1821 QualType SrcType = SrcExpr->getType(); local
1878 QualType SrcType = SrcExpr.get()->getType(); local
[all...]
H A DSemaExprObjC.cpp3807 QualType SrcType = castExpr->getType(); local
3811 SrcType = PDecl->getType();
3815 SrcType = Getter->getReturnType();
3819 ARCConversionTypeClass srcExprACTC = classifyTypeForARCConversion(SrcType);
3824 castType, SrcType, castExpr);
3845 QualType DestType, QualType SrcType,
3851 QualType T = CfToNs ? SrcType : DestType;
3868 << SrcType << DestType;
3879 << SrcType << DestType;
3894 << SrcType << DestTyp
3844 checkObjCBridgeRelatedComponents(SourceLocation Loc, QualType DestType, QualType SrcType, ObjCInterfaceDecl *&RelatedClass, ObjCMethodDecl *&ClassMethod, ObjCMethodDecl *&InstanceMethod, TypedefNameDecl *&TDNDecl, bool CfToNs, bool Diagnose) argument
3918 CheckObjCBridgeRelatedConversions(SourceLocation Loc, QualType DestType, QualType SrcType, Expr *&SrcExpr, bool Diagnose) argument
[all...]
H A DSemaStmt.cpp1182 Sema::DiagnoseAssignmentEnum(QualType DstType, QualType SrcType, argument
1188 if (!Context.hasSameUnqualifiedType(SrcType, DstType) &&
1189 SrcType->isIntegerType()) {
H A DSemaExpr.cpp12393 QualType DstType, QualType SrcType,
12412 DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr);
12417 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
12422 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
12431 SrcType->isObjCObjectPointerType();
12433 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
12436 SrcType = SrcType.getUnqualifiedType();
12449 if (SrcType->isArrayType()) SrcType
12391 DiagnoseAssignmentResult(AssignConvertType ConvTy, SourceLocation Loc, QualType DstType, QualType SrcType, Expr *SrcExpr, AssignmentAction Action, bool *Complained) argument
[all...]
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp2093 Type *SrcType = Trunc->getOperand()->getType(); variable
2100 if (T->getOperand()->getType() != SrcType) {
2106 LargeOps.push_back(getAnyExtendExpr(C, SrcType));
2112 if (T->getOperand()->getType() != SrcType) {
2118 LargeMulOps.push_back(getAnyExtendExpr(C, SrcType));
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DScalarEvolution.cpp1531 Type *SrcType = Trunc->getOperand()->getType(); variable
1538 if (T->getOperand()->getType() != SrcType) {
1544 LargeOps.push_back(getAnyExtendExpr(C, SrcType));
1550 if (T->getOperand()->getType() != SrcType) {
1557 LargeMulOps.push_back(getAnyExtendExpr(C, SrcType));
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp28100 EVT SrcType = Shuffle->getValueType(0); local
[all...]

Completed in 1470 milliseconds