Searched defs:_other (Results 1 - 6 of 6) sorted by relevance

/external/eigen/blas/
H A DBandTriangularSolver.h28 static void run(Index size, Index k, const LhsScalar* _lhs, Index lhsStride, RhsScalar* _other) argument
31 RhsMap other(_other,size,1);
64 static void run(Index size, Index k, const LhsScalar* _lhs, Index lhsStride, RhsScalar* _other) argument
67 RhsMap other(_other,size,1);
/external/eigen/Eigen/src/Core/
H A DSwap.h75 OtherDerived& _other = other.const_cast_derived(); local
79 m_expression.coeffRef(row, col) = _other.coeff(row, col);
80 _other.coeffRef(row, col) = tmp;
86 OtherDerived& _other = other.const_cast_derived(); local
89 m_expression.coeffRef(index) = _other.coeff(index);
90 _other.coeffRef(index) = tmp;
96 OtherDerived& _other = other.const_cast_derived(); local
101 _other.template packet<LoadMode>(row, col)
103 _other.template writePacket<LoadMode>(row, col, tmp);
109 OtherDerived& _other local
[all...]
H A DSelfCwiseBinaryOp.h90 OtherDerived& _other = other.const_cast_derived(); local
94 tmp = m_functor(tmp, _other.coeff(row,col));
100 OtherDerived& _other = other.const_cast_derived(); local
103 tmp = m_functor(tmp, _other.coeff(index));
109 OtherDerived& _other = other.const_cast_derived(); local
113 m_functor.packetOp(m_matrix.template packet<StoreMode>(row, col),_other.template packet<LoadMode>(row, col)) );
119 OtherDerived& _other = other.const_cast_derived(); local
122 m_functor.packetOp(m_matrix.template packet<StoreMode>(index),_other.template packet<LoadMode>(index)) );
H A DPlainObjectBase.h294 EIGEN_STRONG_INLINE void resizeLike(const EigenBase<OtherDerived>& _other) argument
296 const OtherDerived& other = _other.derived();
/external/eigen/Eigen/src/Core/products/
H A DTriangularSolverMatrix.h24 Scalar* _other, Index otherStride,
32 ::run(size, cols, tri, triStride, _other, otherStride, blocking);
44 Scalar* _other, Index otherStride,
49 blas_data_mapper<Scalar, Index, ColMajor> other(_other,otherStride);
170 gebp_kernel(_other+i2, otherStride, blockA, blockB, actual_mc, actual_kc, cols, Scalar(-1), -1, -1, 0, 0, blockW);
186 Scalar* _other, Index otherStride,
191 blas_data_mapper<Scalar, Index, ColMajor> lhs(_other,otherStride);
298 pack_lhs_panel(blockA, _other+absolute_j2*otherStride+i2, otherStride,
305 gebp_kernel(_other+i2+startPanel*otherStride, otherStride, blockA, geb,
21 run( Index size, Index cols, const Scalar* tri, Index triStride, Scalar* _other, Index otherStride, level3_blocking<Scalar,Scalar>& blocking) argument
41 run( Index size, Index otherSize, const Scalar* _tri, Index triStride, Scalar* _other, Index otherStride, level3_blocking<Scalar,Scalar>& blocking) argument
183 run( Index size, Index otherSize, const Scalar* _tri, Index triStride, Scalar* _other, Index otherStride, level3_blocking<Scalar,Scalar>& blocking) argument
/external/eigen/Eigen/src/SparseCore/
H A DSparseVector.h306 EIGEN_DONT_INLINE SparseVector& assign(const SparseMatrixBase<OtherDerived>& _other) argument
308 const OtherDerived& other(_other.derived());

Completed in 553 milliseconds