OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EIGEN_SIZE_MIN_PREFER_DYNAMIC
(Results
1 - 6
of
6
) sorted by null
/external/eigen/Eigen/src/Geometry/
Umeyama.h
35
MinRowsAtCompileTime =
EIGEN_SIZE_MIN_PREFER_DYNAMIC
(MatrixType::RowsAtCompileTime, OtherMatrixType::RowsAtCompileTime),
38
// is likely to fit on the stack. So here,
EIGEN_SIZE_MIN_PREFER_DYNAMIC
is not what we want.
106
enum { Dimension =
EIGEN_SIZE_MIN_PREFER_DYNAMIC
(Derived::RowsAtCompileTime, OtherDerived::RowsAtCompileTime) };
/external/eigen/Eigen/src/Core/
BandMatrix.h
44
SizeAtCompileTime =
EIGEN_SIZE_MIN_PREFER_DYNAMIC
(RowsAtCompileTime,ColsAtCompileTime)
99
?
EIGEN_SIZE_MIN_PREFER_DYNAMIC
(ColsAtCompileTime, RowsAtCompileTime + ActualIndex)
100
:
EIGEN_SIZE_MIN_PREFER_DYNAMIC
(RowsAtCompileTime, ColsAtCompileTime - ActualIndex))
/external/eigen/Eigen/src/Core/util/
Macros.h
365
//
EIGEN_SIZE_MIN_PREFER_DYNAMIC
gives the min between compile-time sizes. 0 has absolute priority, followed by 1,
368
#define
EIGEN_SIZE_MIN_PREFER_DYNAMIC
(a,b) (((int)a == 0 || (int)b == 0) ? 0 \
373
// EIGEN_SIZE_MIN_PREFER_FIXED is a variant of
EIGEN_SIZE_MIN_PREFER_DYNAMIC
comparing MaxSizes. The difference is that finite values
383
// see
EIGEN_SIZE_MIN_PREFER_DYNAMIC
. No need for a separate variant for MaxSizes here.
XprHelper.h
423
enum { diag_size =
EIGEN_SIZE_MIN_PREFER_DYNAMIC
(ExpressionType::RowsAtCompileTime, ExpressionType::ColsAtCompileTime),
/external/eigen/Eigen/src/Eigen2Support/
SVD.h
39
MinSize =
EIGEN_SIZE_MIN_PREFER_DYNAMIC
(MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime)
/external/eigen/Eigen/src/SVD/
JacobiSVD.h
489
DiagSizeAtCompileTime =
EIGEN_SIZE_MIN_PREFER_DYNAMIC
(RowsAtCompileTime,ColsAtCompileTime),
[
all
...]
Completed in 50 milliseconds