OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:_Lhs
(Results
1 - 4
of
4
) sorted by null
/external/eigen/Eigen/src/SparseCore/
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),
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/Skyline/
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/Core/
GeneralProduct.h
59
typedef typename remove_all<Lhs>::type
_Lhs
;
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,
Completed in 339 milliseconds