Lines Matching refs:Zero
222 m_computed = MatrixXr::Zero(this->m_diagSize + 1, this->m_diagSize ); in allocate()
232 if (compU) m_naiveU = MatrixXr::Zero(this->m_diagSize + 1, this->m_diagSize + 1 ); in allocate()
233 else m_naiveU = MatrixXr::Zero(2, this->m_diagSize + 1 ); in allocate()
235 if (compV) m_naiveV = MatrixXr::Zero(this->m_diagSize, this->m_diagSize); in allocate()
258 m_computed = Matrix<int, Dynamic, Dynamic>::Zero(rows(), cols()); in compute()
262 if (this->m_computeFullU) this->m_matrixU = Matrix<int, Dynamic, Dynamic>::Zero(rows(), rows()); in compute()
263 if (this->m_computeFullV) this->m_matrixV = Matrix<int, Dynamic, Dynamic>::Zero(cols(), cols()); in compute()
319 MatrixX temp = MatrixX::Zero(naiveU.rows(), naiveU.cols()); in copyUV()
335 MatrixX temp = MatrixX::Zero(naiveV.rows(), naiveV.cols()); in copyUV()
492 m_computed.block(firstCol + shift, firstCol + shift, n, n) << MatrixXr::Zero(n, n); in divide()
636 const Index Zero = firstCol + shift; in deflation() local
639 const Index I = i + Zero; in deflation()
641 const Index j = permutation[length - i] - Zero; in deflation()
650 aux = m_computed(I, Zero); in deflation()
651 m_computed(I, Zero) = m_computed(J, Zero); in deflation()
652 m_computed(J, Zero) = aux; in deflation()
669 const Index CWI = I + firstColW - Zero; in deflation()
670 const Index CWJ = J + firstColW - Zero; in deflation()
679 realInd[J - Zero] = realI; in deflation()
680 realInd[I - Zero] = j; in deflation()
688 i - Zero, in deflation()
689 i + 1 - Zero, in deflation()