Home
last modified time | relevance | path

Searched refs:firstCol (Results 1 – 2 of 2) sorted by relevance

/external/eigen/Eigen/src/SVD/
DBDCSVD.h175 void divide(Index firstCol, Index lastCol, Index firstRowW, Index firstColW, Index shift);
176 void computeSVDofM(Index firstCol, Index n, MatrixXr& U, VectorType& singVals, MatrixXr& V);
180 void deflation43(Index firstCol, Index shift, Index i, Index size);
182 …void deflation(Index firstCol, Index lastCol, Index k, Index firstRowW, Index firstColW, Index shi…
391 void BDCSVD<MatrixType>::divide (Index firstCol, Index lastCol, Index firstRowW, Index firstColW, I…
397 const Index n = lastCol - firstCol + 1;
410 …JacobiSVD<MatrixXr> b(m_computed.block(firstCol, firstCol, n + 1, n), ComputeFullU | (m_compV ? Co…
412 m_naiveU.block(firstCol, firstCol, n + 1, n + 1).real() = b.matrixU();
415 m_naiveU.row(0).segment(firstCol, n + 1).real() = b.matrixU().row(0);
416 m_naiveU.row(1).segment(firstCol, n + 1).real() = b.matrixU().row(n);
[all …]
/external/freetype/src/pcf/
Dpcfread.c946 FT_UShort firstCol, lastCol; in pcf_get_encodings() local
977 firstCol = FT_GET_USHORT(); in pcf_get_encodings()
985 firstCol = FT_GET_USHORT_LE(); in pcf_get_encodings()
1005 firstCol, lastCol, in pcf_get_encodings()
1010 if ( firstCol > lastCol || in pcf_get_encodings()
1016 nencoding = (FT_ULong)( lastCol - firstCol + 1 ) * in pcf_get_encodings()
1034 defaultCharCol < firstCol || in pcf_get_encodings()
1037 face->defaultChar = firstRow * 256U + firstCol; in pcf_get_encodings()
1054 2 * ( ( defaultCharRow - firstRow ) * ( lastCol - firstCol + 1 ) + in pcf_get_encodings()
1055 defaultCharCol - firstCol ); in pcf_get_encodings()
[all …]