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

/external/skia/gm/
H A Dxfermodes.cpp51 enum SrcType { enum in class:skiagm::XfermodesGM
80 void draw_mode(SkCanvas* canvas, SkXfermode* mode, SrcType srcType,
259 draw_mode(canvas, mode, static_cast<SrcType>(sourceType),
/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.cpp641 QualType SrcType = getSubExpr()->getType(); local
644 if (const PointerType *SrcPTy = SrcType->getAs<PointerType>()) {
645 SrcType = SrcPTy->getPointeeType();
653 cast<CXXRecordDecl>(SrcType->castAs<RecordType>()->getDecl());
H A DExprConstant.cpp1502 QualType SrcType, const APFloat &Value,
1517 QualType SrcType, QualType DestType,
1529 QualType DestType, QualType SrcType,
1541 QualType SrcType, const APSInt &Value,
7367 QualType SrcType = SubExpr->getType(); local
7444 return Info.Ctx.getTypeSize(DestType) <= Info.Ctx.getTypeSize(SrcType);
7446 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
7449 return Success(HandleIntToIntCast(Info, E, DestType, SrcType,
7465 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
7474 SrcType);
1501 HandleFloatToIntCast(EvalInfo &Info, const Expr *E, QualType SrcType, const APFloat &Value, QualType DestType, APSInt &Result) argument
1516 HandleFloatToFloatCast(EvalInfo &Info, const Expr *E, QualType SrcType, QualType DestType, APFloat &Result) argument
1528 HandleIntToIntCast(EvalInfo &Info, const Expr *E, QualType DestType, QualType SrcType, APSInt &Value) argument
1540 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,
399 SrcType = SrcType->castAs<ComplexType>()->getElementType();
405 Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType);
406 Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType);
411 QualType SrcType,
415 Val = CGF.EmitScalarConversion(Val, SrcType, DestType);
395 EmitComplexToComplexCast(ComplexPairTy Val, QualType SrcType, QualType DestType) argument
410 EmitScalarToComplexCast(llvm::Value *Val, QualType SrcType, QualType DestType) argument
H A DCGStmtOpenMP.cpp1380 QualType SrcType, QualType DestType) {
1385 ? CGF.EmitScalarConversion(Val.getScalarVal(), SrcType, DestType)
1386 : CGF.EmitComplexToScalarConversion(Val.getComplexVal(), SrcType,
1391 convertToComplexValue(CodeGenFunction &CGF, RValue Val, QualType SrcType, argument
1400 CGF.EmitScalarConversion(Val.getScalarVal(), SrcType, DestElementType);
1405 auto SrcElementType = SrcType->castAs<ComplexType>()->getElementType();
1379 convertToScalarValue(CodeGenFunction &CGF, RValue Val, QualType SrcType, QualType DestType) argument
H A DCGExprScalar.cpp145 Value *Src, QualType SrcType,
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())) &&
599 Value *Src, QualType SrcType,
673 CGF.getContext().getFloatTypeSemantics(SrcType);
736 Value *ScalarExprEmitter::EmitScalarConversion(Value *Src, QualType SrcType, argument
738 SrcType
597 EmitFloatConversionCheck(Value *OrigSrc, QualType OrigSrcType, Value *Src, QualType SrcType, QualType DstType, llvm::Type *DstTy) argument
1053 QualType SrcType = E->getSrcExpr()->getType(), local
[all...]
/external/clang/lib/Sema/
H A DSemaCast.cpp167 static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
173 static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
181 QualType SrcType,
477 /// CastsAwayConstness - Check if the pointer conversion from SrcType to
486 CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType, argument
501 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() ||
502 SrcType->isBlockPointerType()) &&
508 QualType UnwrappedSrcType = Self.Context.getCanonicalType(SrcType),
622 QualType SrcType local
747 QualType SrcType = SrcExpr->getType(); local
1213 TryStaticPointerDowncast(Sema &Self, QualType SrcType, QualType DestType, bool CStyle, const SourceRange &OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) argument
1247 TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType, bool CStyle, const SourceRange &OpRange, QualType OrigSrcType, QualType OrigDestType, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) argument
1362 TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, QualType SrcType, QualType DestType, bool CStyle, const SourceRange &OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) argument
1534 QualType SrcType = SrcExpr.get()->getType(); local
1647 CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType, bool IsDereference, SourceRange Range) argument
1699 QualType SrcType = SrcExpr.get()->getType(); local
1717 QualType SrcType = SrcExpr->getType(); local
1748 QualType SrcType = SrcExpr.get()->getType(); local
[all...]
H A DSemaExprObjC.cpp3525 QualType SrcType = castExpr->getType(); local
3529 SrcType = PDecl->getType();
3533 SrcType = Getter->getReturnType();
3538 ARCConversionTypeClass srcExprACTC = classifyTypeForARCConversion(SrcType);
3543 castType, SrcType, castExpr);
3565 QualType DestType, QualType SrcType,
3571 QualType T = CfToNs ? SrcType : DestType;
3587 << SrcType << DestType;
3596 << SrcType << DestType;
3609 << SrcType << DestTyp
3564 checkObjCBridgeRelatedComponents(SourceLocation Loc, QualType DestType, QualType SrcType, ObjCInterfaceDecl *&RelatedClass, ObjCMethodDecl *&ClassMethod, ObjCMethodDecl *&InstanceMethod, TypedefNameDecl *&TDNDecl, bool CfToNs) argument
3630 CheckObjCBridgeRelatedConversions(SourceLocation Loc, QualType DestType, QualType SrcType, Expr *&SrcExpr) argument
[all...]
H A DSemaStmt.cpp1170 Sema::DiagnoseAssignmentEnum(QualType DstType, QualType SrcType, argument
1176 if (!Context.hasSameUnqualifiedType(SrcType, DstType) &&
1177 SrcType->isIntegerType()) {
H A DSemaExpr.cpp11526 QualType DstType, QualType SrcType,
11545 DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr);
11550 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
11555 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
11564 SrcType->isObjCObjectPointerType();
11566 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
11569 SrcType = SrcType.getUnqualifiedType();
11582 if (SrcType->isArrayType()) SrcType
11524 DiagnoseAssignmentResult(AssignConvertType ConvTy, SourceLocation Loc, QualType DstType, QualType SrcType, Expr *SrcExpr, AssignmentAction Action, bool *Complained) argument
[all...]
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp2027 Type *SrcType = Trunc->getOperand()->getType(); variable
2034 if (T->getOperand()->getType() != SrcType) {
2040 LargeOps.push_back(getAnyExtendExpr(C, SrcType));
2046 if (T->getOperand()->getType() != SrcType) {
2053 LargeMulOps.push_back(getAnyExtendExpr(C, SrcType));

Completed in 410 milliseconds