Home
last modified time | relevance | path

Searched refs:EIGEN_PLAIN_ENUM_MAX (Results 1 – 6 of 6) sorted by relevance

/external/eigen/Eigen/src/Core/
DDiagonal.h45 … : (EIGEN_PLAIN_ENUM_MIN(MatrixType::RowsAtCompileTime - EIGEN_PLAIN_ENUM_MAX(-DiagIndex, 0),
46 … MatrixType::ColsAtCompileTime - EIGEN_PLAIN_ENUM_MAX( DiagIndex, 0))),
51 … : (EIGEN_PLAIN_ENUM_MIN(MatrixType::MaxRowsAtCompileTime - EIGEN_PLAIN_ENUM_MAX(-DiagIndex, 0),
52 … MatrixType::MaxColsAtCompileTime - EIGEN_PLAIN_ENUM_MAX( DiagIndex, 0))),
DMathFunctions.h513 shift = EIGEN_PLAIN_ENUM_MAX(0, int(rand_bits) - int(scalar_bits)),
/external/eigen/Eigen/src/Core/products/
DTriangularSolverMatrix.h60 SmallPanelWidth = EIGEN_PLAIN_ENUM_MAX(Traits::mr,Traits::nr),
209 SmallPanelWidth = EIGEN_PLAIN_ENUM_MAX(Traits::mr,Traits::nr),
DTriangularMatrixMatrix.h89 SmallPanelWidth = 2 * EIGEN_PLAIN_ENUM_MAX(Traits::mr,Traits::nr),
230 SmallPanelWidth = EIGEN_PLAIN_ENUM_MAX(Traits::mr,Traits::nr),
DGeneralMatrixMatrixTriangular.h137 BlockSize = EIGEN_PLAIN_ENUM_MAX(mr,nr)
/external/eigen/Eigen/src/Core/util/
DMacros.h384 #define EIGEN_PLAIN_ENUM_MAX(a,b) (((int)a >= (int)b) ? (int)a : (int)b) macro