Searched refs:_Lhs (Results 1 – 9 of 9) sorted by relevance
/external/eigen/unsupported/Eigen/src/Skyline/ |
D | SkylineProduct.h | 123 typedef typename remove_all<Lhs>::type _Lhs; 128 LhsIsRowMajor = (_Lhs::Flags & RowMajorBit) == RowMajorBit, 129 LhsIsSelfAdjoint = (_Lhs::Flags & SelfAdjointBit) == SelfAdjointBit, 131 && (((_Lhs::Flags & (UpperTriangularBit | LowerTriangularBit)) == 0) 132 || ((_Lhs::Flags & UpperTriangularBit) && !LhsIsRowMajor) 133 || ((_Lhs::Flags & LowerTriangularBit) && LhsIsRowMajor)), 145 typename _Lhs::InnerLowerIterator lIt(lhs, row); 165 typename _Lhs::InnerUpperIterator uIt(lhs, lhscol); 186 typedef typename remove_all<Lhs>::type _Lhs; 191 LhsIsRowMajor = (_Lhs::Flags & RowMajorBit) == RowMajorBit, [all …]
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseDiagonalProduct.h | 32 typedef typename remove_all<Lhs>::type _Lhs; 34 typedef typename _Lhs::Scalar Scalar; 40 RowsAtCompileTime = _Lhs::RowsAtCompileTime, 43 MaxRowsAtCompileTime = _Lhs::MaxRowsAtCompileTime, 46 SparseFlags = is_diagonal<_Lhs>::ret ? int(_Rhs::Flags) : int(_Lhs::Flags),
|
D | SparseSelfAdjointView.h | 239 typedef typename internal::remove_all<Lhs>::type _Lhs; 240 typedef typename _Lhs::InnerIterator LhsInnerIterator; 242 LhsIsRowMajor = (_Lhs::Flags&RowMajorBit)==RowMajorBit,
|
/external/eigen/unsupported/Eigen/src/KroneckerProduct/ |
D | KroneckerTensorProduct.h | 152 template<typename _Lhs, typename _Rhs> 153 struct traits<KroneckerProduct<_Lhs,_Rhs> > 155 typedef typename remove_all<_Lhs>::type Lhs; 170 template<typename _Lhs, typename _Rhs> 171 struct traits<KroneckerProductSparse<_Lhs,_Rhs> > 174 typedef typename remove_all<_Lhs>::type Lhs;
|
/external/eigen/Eigen/src/Core/ |
D | ProductBase.h | 21 template<typename Derived, typename _Lhs, typename _Rhs> 22 struct traits<ProductBase<Derived,_Lhs,_Rhs> > 25 typedef typename remove_all<_Lhs>::type Lhs;
|
D | GeneralProduct.h | 59 typedef typename remove_all<Lhs>::type _Lhs; typedef 62 MaxRows = _Lhs::MaxRowsAtCompileTime, 63 Rows = _Lhs::RowsAtCompileTime, 66 MaxDepth = EIGEN_SIZE_MIN_PREFER_FIXED(_Lhs::MaxColsAtCompileTime, 68 Depth = EIGEN_SIZE_MIN_PREFER_FIXED(_Lhs::ColsAtCompileTime,
|
/external/eigen/Eigen/src/Core/products/ |
D | GeneralMatrixMatrixTriangular.h | 268 template<typename ProductDerived, typename _Lhs, typename _Rhs> 269 …larView<MatrixType,UpLo>::assignProduct(const ProductBase<ProductDerived, _Lhs,_Rhs>& prod, const … 271 …general_product_to_triangular_selector<MatrixType, ProductDerived, UpLo, (_Lhs::ColsAtCompileTime=…
|
/external/opencv3/modules/videoio/src/ |
D | ppltasks_winrt.hpp | 8656 task<std::vector<_ReturnType>> operator&&(const task<_ReturnType> & _Lhs, const task<_ReturnType> &… 8658 task<_ReturnType> _PTasks[2] = { _Lhs, _Rhs }; 8688 task<std::vector<_ReturnType>> operator&&(const task<std::vector<_ReturnType>> & _Lhs, const task<_… 8690 return details::_WhenAllVectorAndValue(_Lhs, _Rhs, true); 8719 task<std::vector<_ReturnType>> operator&&(const task<_ReturnType> & _Lhs, const task<std::vector<_R… 8721 return details::_WhenAllVectorAndValue(_Rhs, _Lhs, false); 8750 task<std::vector<_ReturnType>> operator&&(const task<std::vector<_ReturnType>> & _Lhs, const task<s… 8752 task<std::vector<_ReturnType>> _PTasks[2] = { _Lhs, _Rhs }; 8781 inline task<void> operator&&(const task<void> & _Lhs, const task<void> & _Rhs) 8783 task<void> _PTasks[2] = { _Lhs, _Rhs }; [all …]
|
/external/opencv3/modules/highgui/src/ |
D | ppltasks_winrt.h | 8656 task<std::vector<_ReturnType>> operator&&(const task<_ReturnType> & _Lhs, const task<_ReturnType> &… 8658 task<_ReturnType> _PTasks[2] = { _Lhs, _Rhs }; 8688 task<std::vector<_ReturnType>> operator&&(const task<std::vector<_ReturnType>> & _Lhs, const task<_… 8690 return details::_WhenAllVectorAndValue(_Lhs, _Rhs, true); 8719 task<std::vector<_ReturnType>> operator&&(const task<_ReturnType> & _Lhs, const task<std::vector<_R… 8721 return details::_WhenAllVectorAndValue(_Rhs, _Lhs, false); 8750 task<std::vector<_ReturnType>> operator&&(const task<std::vector<_ReturnType>> & _Lhs, const task<s… 8752 task<std::vector<_ReturnType>> _PTasks[2] = { _Lhs, _Rhs }; 8781 inline task<void> operator&&(const task<void> & _Lhs, const task<void> & _Rhs) 8783 task<void> _PTasks[2] = { _Lhs, _Rhs }; [all …]
|