Home
last modified time | relevance | path

Searched refs:CoeffType (Results 1 – 3 of 3) sorted by relevance

/external/eigen/unsupported/Eigen/src/AutoDiff/
DAutoDiffVector.h40 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/
DAlignedVector350 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/
DTensorReductionCuda.h113 template <typename CoeffType, typename Index>
114 __global__ void ReductionInitKernel(const CoeffType val, Index num_preserved_coeffs, CoeffType* out… in ReductionInitKernel()