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

  /external/gemmlowp/internal/
dispatch_gemm_shape.h 29 typedef T DstType;
34 using TransposeType = typename TransposeImpl<T>::DstType;
58 typedef VectorMap<Scalar, TransposedShape> DstType;
59 static DstType Run(const SrcType& src) {
60 return DstType(src.data(), src.size());
68 typedef MatrixMap<Scalar, TransposedOrder> DstType;
69 static DstType Run(const SrcType& src) {
70 return DstType(src.data(), src.cols(), src.rows(), src.stride());
78 typedef OutputStageQuantizeDownInt32ToUint8ScalePC<TransposedShape> DstType;
79 static DstType Run(const SrcType& src)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceInstMIPS32.cpp 644 const Type DstType = Dest->getType();
648 if ((isScalarIntegerType(DstType) && isScalarFloatingType(SrcType)) ||
649 (isScalarFloatingType(DstType) && isScalarIntegerType(SrcType))) {
650 if (isScalarFloatingType(DstType)) {
    [all...]
IceAssemblerMIPS32.cpp 796 const Type DstType = OpRd->getType();
799 if ((isScalarIntegerType(DstType) && isScalarFloatingType(SrcType)) ||
800 (isScalarFloatingType(DstType) && isScalarIntegerType(SrcType))) {
801 if (isScalarFloatingType(DstType)) {
807 switch (DstType) {
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 351 void Sema::diagnoseNullableToNonnullConversion(QualType DstType,
358 Optional<NullabilityKind> TypeNullability = DstType->getNullability(Context);
362 Diag(Loc, diag::warn_nullability_lost) << SrcType << DstType;
    [all...]
  /external/skia/tests/
VkHardwareBufferTest.cpp     [all...]
  /external/skqp/tests/
VkHardwareBufferTest.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 146 Value *Src, QualType SrcType, QualType DstType,
599 QualType DstType, llvm::Type *DstTy, SourceLocation Loc) {
610 assert(DstType->isFloatingType());
614 APFloat::getLargest(CGF.getContext().getFloatTypeSemantics(DstType));
640 unsigned Width = CGF.getContext().getIntWidth(DstType);
641 bool Unsigned = DstType->isUnsignedIntegerOrEnumerationType();
698 if (CGF.getContext().getFloatingTypeOrder(OrigSrcType, DstType) != 1)
705 CGF.getContext().getFloatTypeSemantics(DstType);
725 CGF.EmitCheckTypeDescriptor(DstType)};
733 QualType DstType,
    [all...]

Completed in 346 milliseconds