Home | History | Annotate | Download | only in blas

Lines Matching refs:actual_k

43         int actual_k = (std::min)(k,ii);
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);
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_k)
87 -= other.coeff(i,col) * cjLhs.col(i).segment(actual_start,actual_k);