Searched refs:CoeffType (Results 1 – 3 of 3) sorted by relevance
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
D | AutoDiffVector.h | 40 typedef AutoDiffScalar<typename JacobianType::ColXpr> CoeffType; typedef 52 CoeffType operator[] (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } 53 const CoeffType operator[] (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } 55 CoeffType operator() (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } in operator() 56 const CoeffType operator() (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } in operator() 58 CoeffType coeffRef(Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } in coeffRef() 59 const CoeffType coeffRef(Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } in coeffRef()
|
/external/eigen/unsupported/Eigen/ |
D | AlignedVector3 | 50 typedef Matrix<_Scalar,4,1> CoeffType; 51 CoeffType m_coeffs; 196 CoeffType& coeffs() { return m_coeffs; } 197 const CoeffType& coeffs() const { return m_coeffs; }
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorReductionCuda.h | 113 template <typename CoeffType, typename Index> 114 __global__ void ReductionInitKernel(const CoeffType val, Index num_preserved_coeffs, CoeffType* out… in ReductionInitKernel()
|