OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LhsIsRowMajor
(Results
1 - 2
of
2
) sorted by null
/external/eigen/unsupported/Eigen/src/Skyline/
SkylineProduct.h
128
LhsIsRowMajor
= (_Lhs::Flags & RowMajorBit) == RowMajorBit,
132
|| ((_Lhs::Flags & UpperTriangularBit) && !
LhsIsRowMajor
)
133
|| ((_Lhs::Flags & LowerTriangularBit) &&
LhsIsRowMajor
)),
191
LhsIsRowMajor
= (_Lhs::Flags & RowMajorBit) == RowMajorBit,
195
|| ((_Lhs::Flags & UpperTriangularBit) && !
LhsIsRowMajor
)
196
|| ((_Lhs::Flags & LowerTriangularBit) &&
LhsIsRowMajor
)),
/external/eigen/Eigen/src/SparseCore/
SparseSelfAdjointView.h
242
LhsIsRowMajor
= (_Lhs::Flags&RowMajorBit)==RowMajorBit,
245
|| ( (UpLo&Upper) && !
LhsIsRowMajor
)
246
|| ( (UpLo&Lower) &&
LhsIsRowMajor
),
263
Index a =
LhsIsRowMajor
? j : i.index();
264
Index b =
LhsIsRowMajor
? i.index() : j;
Completed in 193 milliseconds