HomeSort by relevance Sort by last modified time
    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 218 LhsIsRowMajor = (_Lhs::Flags&RowMajorBit)==RowMajorBit,
221 || ( (UpLo&Upper) && !LhsIsRowMajor)
222 || ( (UpLo&Lower) && LhsIsRowMajor),
239 Index a = LhsIsRowMajor ? j : i.index();
240 Index b = LhsIsRowMajor ? i.index() : j;

Completed in 48 milliseconds