OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:actual_k
(Results
1 - 2
of
2
) sorted by null
/external/eigen/blas/
BandTriangularSolver.h
43
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_k
[
all
...]
/external/eigen/Eigen/src/Householder/
HouseholderSequence.h
293
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 418 milliseconds