Searched defs:EigenBase (Results 1 – 1 of 1) sorted by relevance
29 template<typename Derived> struct EigenBase struct53 { return *static_cast<Derived*>(const_cast<EigenBase*>(this)); } in const_cast_derived() argument55 inline const Derived& const_derived() const in const_derived()60 inline Index rows() const EIGEN_NOEXCEPT { return derived().rows(); } in rows()63 inline Index cols() const EIGEN_NOEXCEPT { return derived().cols(); } in cols()67 inline Index size() const EIGEN_NOEXCEPT { return rows() * cols(); } in size()72 inline void evalTo(Dest& dst) const in evalTo()78 inline void addTo(Dest& dst) const in addTo()90 inline void subTo(Dest& dst) const in subTo()101 EIGEN_DEVICE_FUNC inline void applyThisOnTheRight(Dest& dst) const in applyThisOnTheRight()[all …]