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.h669 shift = EIGEN_PLAIN_ENUM_MAX(0, int(rand_bits) - int(scalar_bits))
/external/eigen/Eigen/src/Core/products/
DTriangularSolverMatrix.h53 SmallPanelWidth = EIGEN_PLAIN_ENUM_MAX(Traits::mr,Traits::nr),
196 SmallPanelWidth = EIGEN_PLAIN_ENUM_MAX(Traits::mr,Traits::nr),
DTriangularMatrixMatrix.h89 SmallPanelWidth = 2 * EIGEN_PLAIN_ENUM_MAX(Traits::mr,Traits::nr),
218 SmallPanelWidth = EIGEN_PLAIN_ENUM_MAX(Traits::mr,Traits::nr),
DGeneralMatrixMatrixTriangular.h134 BlockSize = EIGEN_PLAIN_ENUM_MAX(mr,nr)
/external/eigen/Eigen/src/Core/util/
DMacros.h363 #define EIGEN_PLAIN_ENUM_MAX(a,b) (((int)a >= (int)b) ? (int)a : (int)b) macro