HomeSort by relevance Sort by last modified time
    Searched defs:SrcType (Results 1 - 15 of 15) sorted by null

  /external/gemmlowp/internal/
dispatch_gemm_shape.h 55 typedef VectorMap<Scalar, Shape> SrcType;
59 static DstType Run(const SrcType& src) {
66 typedef MatrixMap<Scalar, Order> SrcType;
69 static DstType Run(const SrcType& src) {
76 typedef OutputStageQuantizeDownInt32ToUint8ScalePC<Shape> SrcType;
79 static DstType Run(const SrcType& src) {
90 typedef OutputStageBiasAddition<VectorMapType> SrcType;
93 static DstType Run(const SrcType& src) {
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorConversion.h 127 typedef typename internal::unpacket_traits<SrcPacket>::type SrcType;
129 internal::scalar_cast_op<SrcType, TgtType> converter;
189 typedef typename internal::remove_all<typename internal::traits<ArgType>::Scalar>::type SrcType;
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, TargetType>::TgtCoeffRatio
    [all...]
  /external/skia/gm/
xfermodes.cpp 14 enum SrcType {
116 /* The srcType argument indicates what to draw for the source part. Skia
120 void draw_mode(SkCanvas* canvas, SkBlendMode mode, SrcType srcType, SkScalar x, SkScalar y) {
128 switch (srcType) {
251 draw_mode(canvas, gModes[i].fMode, static_cast<SrcType>(sourceType),
  /external/swiftshader/third_party/subzero/src/
IceInstMIPS32.cpp 645 const Type SrcType = Src->getType();
648 if ((isScalarIntegerType(DstType) && isScalarFloatingType(SrcType)) ||
649 (isScalarFloatingType(DstType) && isScalarIntegerType(SrcType))) {
    [all...]
IceAssemblerMIPS32.cpp 797 const Type SrcType = OpRs->getType();
799 if ((isScalarIntegerType(DstType) && isScalarFloatingType(SrcType)) ||
800 (isScalarFloatingType(DstType) && isScalarIntegerType(SrcType))) {
    [all...]
IceTargetLoweringMIPS32.cpp 335 const Type SrcType = Src0->getType();
341 for (SizeT I = 0; I < typeNumElements(SrcType); ++I) {
343 auto *Op0 = Func->makeVariable(typeElementType(SrcType));
345 auto *Op1 = Func->makeVariable(typeElementType(SrcType));
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler_util.c 364 unsigned int SrcType;
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/
ExprCXX.cpp 570 QualType SrcType = getSubExpr()->getType();
573 if (const PointerType *SrcPTy = SrcType->getAs<PointerType>()) {
574 SrcType = SrcPTy->getPointeeType();
582 cast<CXXRecordDecl>(SrcType->castAs<RecordType>()->getDecl());
    [all...]
ExprConstant.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 168 static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
174 static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
182 QualType SrcType,
325 QualType srcType = src->getType();
326 if (!destType->isRecordType() && !srcType->isRecordType())
374 << CT << srcType << destType
478 /// CastsAwayConstness - Check if the pointer conversion from SrcType to
487 CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
502 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() |
    [all...]
SemaExprObjC.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 146 Value *Src, QualType SrcType, QualType DstType,
578 Value *ScalarExprEmitter::EmitConversionToBool(Value *Src, QualType SrcType) {
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,
735 return EmitScalarConversion(Src, SrcType, DstType, Loc, false)
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 655 milliseconds