Searched defs:OtherDerived (Results 1 - 3 of 3) sorted by relevance
/external/eigen/Eigen/src/Core/ |
H A D | Fuzzy.h | 19 template<typename Derived, typename OtherDerived, bool is_integer = NumTraits<typename Derived::Scalar>::IsInteger> 22 static bool run(const Derived& x, const OtherDerived& y, const typename Derived::RealScalar& prec) 26 typename internal::nested<OtherDerived,2>::type otherNested(y); 31 template<typename Derived, typename OtherDerived> 32 struct isApprox_selector<Derived, OtherDerived, true> 34 static bool run(const Derived& x, const OtherDerived& y, const typename Derived::RealScalar&) 40 template<typename Derived, typename OtherDerived, bool is_integer = NumTraits<typename Derived::Scalar>::IsInteger> 43 static bool run(const Derived& x, const OtherDerived& y, const typename Derived::RealScalar& prec) 49 template<typename Derived, typename OtherDerived> 50 struct isMuchSmallerThan_object_selector<Derived, OtherDerived, tru 52 run(const Derived& x, const OtherDerived&, const typename Derived::RealScalar&) argument [all...] |
H A D | DenseBase.h | 249 template<typename OtherDerived> 250 Derived& operator=(const DenseBase<OtherDerived>& other); 257 template<typename OtherDerived> 258 Derived& operator=(const EigenBase<OtherDerived> &other); 260 template<typename OtherDerived> 261 Derived& operator+=(const EigenBase<OtherDerived> &other); 263 template<typename OtherDerived> 264 Derived& operator-=(const EigenBase<OtherDerived> &other); 266 template<typename OtherDerived> 267 Derived& operator=(const ReturnByValue<OtherDerived> 374 swap(const DenseBase<OtherDerived>& other, int = OtherDerived::ThisConstantIsPrivateInPlainObjectBase) argument [all...] |
H A D | Transpose.h | 342 template<bool DestIsTransposed, typename OtherDerived> 345 enum { ret = bool(blas_traits<OtherDerived>::IsTransposed) != DestIsTransposed }; 356 template<typename Scalar, bool DestIsTransposed, typename OtherDerived> 359 static bool run(const Scalar* dest, const OtherDerived& src) 361 return (bool(blas_traits<OtherDerived>::IsTransposed) != DestIsTransposed) && (dest!=0 && dest==(const Scalar*)extract_data(src)); 381 template<typename Derived, typename OtherDerived, 384 <blas_traits<Derived>::IsTransposed,OtherDerived>::ret 388 static void run(const Derived& dst, const OtherDerived& other) 391 <typename Derived::Scalar,blas_traits<Derived>::IsTransposed,OtherDerived> 399 template<typename Derived, typename OtherDerived> 402 run(const Derived&, const OtherDerived&) argument [all...] |
Completed in 113 milliseconds