HomeSort by relevance Sort by last modified time
    Searched refs:SrcEvaluatorType (Results 1 - 5 of 5) sorted by null

  /external/eigen/Eigen/src/SparseCore/
SparseAssign.h 75 typedef internal::evaluator<SrcXprType> SrcEvaluatorType;
77 SrcEvaluatorType srcEvaluator(src);
79 const bool transpose = (DstEvaluatorType::Flags & RowMajorBit) != (SrcEvaluatorType::Flags & RowMajorBit);
80 const Index outerEvaluationSize = (SrcEvaluatorType::Flags&RowMajorBit) ? src.rows() : src.cols();
90 for (typename SrcEvaluatorType::InnerIterator it(srcEvaluator, j); it; ++it)
102 (!((DstEvaluatorType::Flags & RowMajorBit) != (SrcEvaluatorType::Flags & RowMajorBit)))) &&
105 enum { Flip = (DstEvaluatorType::Flags & RowMajorBit) != (SrcEvaluatorType::Flags & RowMajorBit) };
114 for (typename SrcEvaluatorType::InnerIterator it(srcEvaluator, j); it; ++it)
SparseVector.h 444 typedef internal::evaluator<Src> SrcEvaluatorType;
445 SrcEvaluatorType srcEval(src);
446 for(typename SrcEvaluatorType::InnerIterator it(srcEval, 0); it; ++it)
455 typedef internal::evaluator<Src> SrcEvaluatorType;
456 SrcEvaluatorType srcEval(src);
459 typename SrcEvaluatorType::InnerIterator it(srcEval, i);
  /external/eigen/Eigen/src/Core/
SelfAdjointView.h 290 typedef typename Base::SrcEvaluatorType SrcEvaluatorType;
295 EIGEN_DEVICE_FUNC triangular_dense_assignment_kernel(DstEvaluatorType &dst, const SrcEvaluatorType &src, const Functor &func, DstXprType& dstExpr)
TriangularMatrix.h 748 typedef typename Base::SrcEvaluatorType SrcEvaluatorType;
753 EIGEN_DEVICE_FUNC triangular_dense_assignment_kernel(DstEvaluatorType &dst, const SrcEvaluatorType &src, const Functor &func, DstXprType& dstExpr)
787 typedef evaluator<SrcXprType> SrcEvaluatorType;
789 SrcEvaluatorType srcEvaluator(src);
798 DstEvaluatorType,SrcEvaluatorType,Functor> Kernel;
803 && SrcEvaluatorType::CoeffReadCost < HugeCost
804 && DstXprType::SizeAtCompileTime * (DstEvaluatorType::CoeffReadCost+SrcEvaluatorType::CoeffReadCost) / 2 <= EIGEN_UNROLLING_LIMIT
    [all...]
AssignEvaluator.h 604 typedef SrcEvaluatorTypeT SrcEvaluatorType;
610 EIGEN_DEVICE_FUNC generic_dense_assignment_kernel(DstEvaluatorType &dst, const SrcEvaluatorType &src, const Functor &func, DstXprType& dstExpr)
626 EIGEN_DEVICE_FUNC const SrcEvaluatorType& srcEvaluator() const { return m_src; }
694 const SrcEvaluatorType& m_src;
728 typedef evaluator<SrcXprType> SrcEvaluatorType;
730 SrcEvaluatorType srcEvaluator(src);
738 typedef generic_dense_assignment_kernel<DstEvaluatorType,SrcEvaluatorType,Functor> Kernel;
    [all...]

Completed in 562 milliseconds