Searched refs:actual_k (Results 1 - 2 of 2) sorted by relevance

/external/eigen/blas/
H A DBandTriangularSolver.h43 int actual_k = (std::min)(k,ii); local
44 int actual_start = IsLower ? k-actual_k : 1;
46 if(actual_k>0)
47 other.coeffRef(i,col) -= cjLhs.row(i).segment(actual_start,actual_k).transpose()
48 .cwiseProduct(other.col(col).segment(IsLower ? i-actual_k : i+1,actual_k)).sum();
79 int actual_k = (std::min)(k,size-ii-1); local
80 int actual_start = IsLower ? 1 : k-actual_k;
85 if(actual_k>0)
86 other.col(col).segment(IsLower ? i+1 : i-actual_k, actual_
[all...]
/external/eigen/Eigen/src/Householder/
H A DHouseholderSequence.h293 Index actual_k = m_trans ? m_length-k-1 : k; local
294 dst.rightCols(rows()-m_shift-actual_k)
295 .applyHouseholderOnTheRight(essentialVector(actual_k), m_coeffs.coeff(actual_k), workspace.data());
313 Index actual_k = m_trans ? k : m_length-k-1; local
314 dst.bottomRows(rows()-m_shift-actual_k)
315 .applyHouseholderOnTheLeft(essentialVector(actual_k), m_coeffs.coeff(actual_k), workspace.data());

Completed in 74 milliseconds