HomeSort by relevance Sort by last modified time
    Searched refs:m_cols (Results 1 - 10 of 10) sorted by null

  /external/eigen/Eigen/src/Core/
DenseStorage.h 169 DenseIndex m_cols; member in class:Eigen::DenseStorage
171 inline DenseStorage() : m_rows(0), m_cols(0) {}
173 : m_data(internal::constructor_without_unaligned_array_assert()), m_rows(0), m_cols(0) {}
174 inline DenseStorage(DenseIndex, DenseIndex nbRows, DenseIndex nbCols) : m_rows(nbRows), m_cols(nbCols) {}
176 { std::swap(m_data,other.m_data); std::swap(m_rows,other.m_rows); std::swap(m_cols,other.m_cols); }
178 inline DenseIndex cols() const {return m_cols;}
179 inline void conservativeResize(DenseIndex, DenseIndex nbRows, DenseIndex nbCols) { m_rows = nbRows; m_cols = nbCols; }
180 inline void resize(DenseIndex, DenseIndex nbRows, DenseIndex nbCols) { m_rows = nbRows; m_cols = nbCols; }
208 DenseIndex m_cols; member in class:Eigen::DenseStorage
228 DenseIndex m_cols; member in class:Eigen::DenseStorage
269 DenseIndex m_cols; member in class:Eigen::DenseStorage
    [all...]
MapBase.h 80 inline Index cols() const { return m_cols.value(); }
126 inline MapBase(PointerType dataPtr) : m_data(dataPtr), m_rows(RowsAtCompileTime), m_cols(ColsAtCompileTime)
135 m_cols(ColsAtCompileTime == Dynamic ? vecSize : Index(ColsAtCompileTime))
144 : m_data(dataPtr), m_rows(nbRows), m_cols(nbCols)
165 const internal::variable_if_dynamic<Index, ColsAtCompileTime> m_cols; member in class:Eigen::MapBase
CwiseNullaryOp.h 58 : m_rows(nbRows), m_cols(nbCols), m_functor(func)
67 EIGEN_STRONG_INLINE Index cols() const { return m_cols.value(); }
96 const internal::variable_if_dynamic<Index, ColsAtCompileTime> m_cols; member in class:Eigen::CwiseNullaryOp
  /external/eigen/unsupported/Eigen/src/SVD/
SVDBase.h 161 inline Index cols() const { return m_cols; }
175 Index m_nonzeroSingularValues, m_rows, m_cols, m_diagSize; member in class:Eigen::SVDBase
186 m_rows(-1), m_cols(-1)
200 cols == m_cols &&
207 m_cols = cols;
220 m_diagSize = (std::min)(m_rows, m_cols);
227 m_matrixV.resize(m_cols, m_computeFullV ? m_cols
JacobiSVD.h 634 if(this->m_cols>this->m_rows) m_qr_precond_morecols.allocate(*this);
635 if(this->m_rows>this->m_cols) m_qr_precond_morerows.allocate(*this);
659 if(this->m_computeFullV) this->m_matrixV.setIdentity(this->m_cols,this->m_cols);
660 if(this->m_computeThinV) this->m_matrixV.setIdentity(this->m_cols, this->m_diagSize);
  /external/eigen/Eigen/src/misc/
Kernel.h 47 m_cols(m_rank==dec.cols() ? 1 : dec.cols() - m_rank)
51 inline Index cols() const { return m_cols; }
62 Index m_rank, m_cols; member in struct:Eigen::internal::kernel_retval_base
Image.h 45 m_cols(m_rank == 0 ? 1 : m_rank),
50 inline Index cols() const { return m_cols; }
62 Index m_rank, m_cols; member in struct:Eigen::internal::image_retval_base
  /external/eigen/Eigen/src/SVD/
JacobiSVD_MKL.h 66 ldvt = (m_computeFullV) ? m_cols : (m_computeThinV) ? m_diagSize : 1; \
68 localV.resize(ldvt, m_cols); \
73 LAPACKE_##MKLPREFIX##gesvd( matrix_order, jobu, jobvt, m_rows, m_cols, (MKLTYPE*)m_temp.data(), lda, (MKLRTYPE*)m_singularValues.data(), u, ldu, vt, ldvt, superb.data()); \
JacobiSVD.h 541 m_rows(-1), m_cols(-1), m_diagSize(0)
556 m_rows(-1), m_cols(-1)
576 m_rows(-1), m_cols(-1)
741 inline Index cols() const { return m_cols; }
760 Index m_nonzeroSingularValues, m_rows, m_cols, m_diagSize; member in class:Eigen::JacobiSVD
780 cols == m_cols &&
787 m_cols = cols;
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btMatrixX.h 158 int m_cols; member in struct:btMatrixX
177 m_cols(0),
185 m_cols(cols),
196 m_cols = cols;
204 return m_cols;
221 if (m_storage[col+row*m_cols]==0.f)
226 m_storage[row*m_cols+col] += val;
235 m_storage[row*m_cols+col] = val;
243 m_storage[row*m_cols+col] *= val;
266 return m_storage[col+row*m_cols];
    [all...]

Completed in 1556 milliseconds