Searched refs:_LhsNested (Results 1 - 9 of 9) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
H A DSparseProduct.h44 typedef typename remove_all<LhsNested>::type _LhsNested; typedef in struct:Eigen::internal::traits
46 typedef typename _LhsNested::Scalar Scalar;
47 typedef typename promote_index_type<typename traits<_LhsNested>::Index,
51 LhsCoeffReadCost = _LhsNested::CoeffReadCost,
53 LhsFlags = _LhsNested::Flags,
56 RowsAtCompileTime = _LhsNested::RowsAtCompileTime,
58 MaxRowsAtCompileTime = _LhsNested::MaxRowsAtCompileTime,
61 InnerSize = EIGEN_SIZE_MIN_PREFER_FIXED(_LhsNested::ColsAtCompileTime, _RhsNested::RowsAtCompileTime),
90 typedef typename internal::traits<SparseSparseProduct>::_LhsNested _LhsNested; typedef in class:Eigen::SparseSparseProduct
[all...]
H A DSparseCwiseBinaryOp.h99 typedef typename traits<CwiseBinaryXpr>::_LhsNested _LhsNested; typedef in class:Eigen::internal::sparse_cwise_binary_op_inner_iterator_selector
101 typedef typename _LhsNested::InnerIterator LhsIterator;
165 typedef typename traits<CwiseBinaryXpr>::_LhsNested _LhsNested; typedef in class:Eigen::internal::sparse_cwise_binary_op_inner_iterator_selector
166 typedef typename _LhsNested::InnerIterator LhsIterator;
219 typedef typename traits<CwiseBinaryXpr>::_LhsNested _LhsNested; typedef in class:Eigen::internal::sparse_cwise_binary_op_inner_iterator_selector
221 typedef typename _LhsNested::InnerIterator LhsIterator;
H A DSparseDiagonalProduct.h66 typedef typename internal::remove_all<LhsNested>::type _LhsNested; typedef in class:Eigen::SparseDiagonalProduct
70 LhsMode = internal::is_diagonal<_LhsNested>::ret ? internal::SDP_IsDiagonal
71 : (_LhsNested::Flags&RowMajorBit) ? internal::SDP_IsSparseRowMajor : internal::SDP_IsSparseColMajor,
81 <_LhsNested,_RhsNested,SparseDiagonalProduct,LhsMode,RhsMode> InnerIterator;
96 EIGEN_STRONG_INLINE const _LhsNested& lhs() const { return m_lhs; }
H A DSparseDenseProduct.h52 typedef typename remove_all<LhsNested>::type _LhsNested; typedef in struct:Eigen::internal::traits
56 LhsCoeffReadCost = traits<_LhsNested>::CoeffReadCost,
86 typedef typename Traits::_LhsNested _LhsNested; typedef in class:Eigen::SparseDenseOuterProduct
108 EIGEN_STRONG_INLINE const _LhsNested& lhs() const { return m_lhs; }
117 class SparseDenseOuterProduct<Lhs,Rhs,Transpose>::InnerIterator : public _LhsNested::InnerIterator
119 typedef typename _LhsNested::InnerIterator Base;
299 Transpose<const _LhsNested> lhs_t(m_lhs);
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineProduct.h26 typedef typename internal::remove_all<LhsNested>::type _LhsNested; typedef in struct:Eigen::internal::traits
28 typedef typename _LhsNested::Scalar Scalar;
31 LhsCoeffReadCost = _LhsNested::CoeffReadCost,
33 LhsFlags = _LhsNested::Flags,
36 RowsAtCompileTime = _LhsNested::RowsAtCompileTime,
38 InnerSize = EIGEN_SIZE_MIN_PREFER_FIXED(_LhsNested::ColsAtCompileTime, _RhsNested::RowsAtCompileTime),
40 MaxRowsAtCompileTime = _LhsNested::MaxRowsAtCompileTime,
70 typedef typename traits<SkylineProduct>::_LhsNested _LhsNested; typedef in class:Eigen::internal::SkylineProduct
81 ProductIsValid = _LhsNested
[all...]
/external/eigen/Eigen/src/Core/products/
H A DCoeffBasedProduct.h41 typedef typename remove_all<LhsNested>::type _LhsNested; typedef in struct:Eigen::internal::traits
43 typedef typename scalar_product_traits<typename _LhsNested::Scalar, typename _RhsNested::Scalar>::ReturnType Scalar;
44 typedef typename promote_storage_type<typename traits<_LhsNested>::StorageKind,
46 typedef typename promote_index_type<typename traits<_LhsNested>::Index,
50 LhsCoeffReadCost = _LhsNested::CoeffReadCost,
52 LhsFlags = _LhsNested::Flags,
55 RowsAtCompileTime = _LhsNested::RowsAtCompileTime,
57 InnerSize = EIGEN_SIZE_MIN_PREFER_FIXED(_LhsNested::ColsAtCompileTime, _RhsNested::RowsAtCompileTime),
59 MaxRowsAtCompileTime = _LhsNested::MaxRowsAtCompileTime,
65 SameType = is_same<typename _LhsNested
125 typedef typename internal::traits<CoeffBasedProduct>::_LhsNested _LhsNested; typedef in class:Eigen::CoeffBasedProduct
[all...]
/external/eigen/Eigen/src/Core/
H A DCwiseBinaryOp.h65 typedef typename remove_reference<LhsNested>::type _LhsNested; typedef in struct:Eigen::internal::traits
68 LhsCoeffReadCost = _LhsNested::CoeffReadCost,
70 LhsFlags = _LhsNested::Flags,
72 SameType = is_same<typename _LhsNested::Scalar,typename _RhsNested::Scalar>::value,
122 typedef typename internal::remove_reference<LhsNested>::type _LhsNested; typedef in class:Eigen::CwiseBinaryOp
150 const _LhsNested& lhs() const { return m_lhs; }
H A DProductBase.h50 typedef typename Base::_LhsNested _LhsNested; \
70 typedef typename internal::remove_all<LhsNested>::type _LhsNested; typedef in class:Eigen::ProductBase
71 typedef internal::blas_traits<_LhsNested> LhsBlasTraits;
113 const _LhsNested& lhs() const { return m_lhs; }
223 typename NestedProduct::_LhsNested,
233 typename NestedProduct::_LhsNested,
238 typename NestedProduct::_LhsNested,
H A DGeneralProduct.h343 typedef typename internal::conditional<int(Side)==OnTheRight,_LhsNested,_RhsNested>::type MatrixType;
365 ::run(GeneralProduct<Transpose<const typename ProductType::_RhsNested>,Transpose<const typename ProductType::_LhsNested>, GemvProduct>

Completed in 2132 milliseconds