Home
last modified time | relevance | path

Searched refs:ArrayBase (Results 1 – 25 of 25) sorted by relevance

/external/eigen/Eigen/src/Core/
DGlobalFunctions.h25 NAME(const Eigen::ArrayBase<Derived>& x);
32 (NAME)(const Eigen::ArrayBase<Derived>& x) { \
41 struct NAME##_retval<ArrayBase<Derived> > \
46 struct NAME##_impl<ArrayBase<Derived> > \
48 …static inline typename NAME##_retval<ArrayBase<Derived> >::type run(const Eigen::ArrayBase<Derived…
50 return typename NAME##_retval<ArrayBase<Derived> >::type(x.derived()); \
56 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(real,scalar_real_op,real part,\sa ArrayBase::real)
57 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(imag,scalar_imag_op,imaginary part,\sa ArrayBase::imag)
58 …EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(conj,scalar_conjugate_op,complex conjugate,\sa ArrayBase::conjuga…
59 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(inverse,scalar_inverse_op,inverse,\sa ArrayBase::inverse)
[all …]
DArrayBase.h39 template<typename Derived> class ArrayBase
45 typedef ArrayBase StorageBaseType;
47 typedef ArrayBase Eigen_BaseClassForSpecializationOfGlobalMathFuncImpl;
90 #define EIGEN_CURRENT_STORAGE_BASE_CLASS Eigen::ArrayBase
107 Derived& operator=(const ArrayBase& other)
126 Derived& operator+=(const ArrayBase<OtherDerived>& other);
129 Derived& operator-=(const ArrayBase<OtherDerived>& other);
133 Derived& operator*=(const ArrayBase<OtherDerived>& other);
137 Derived& operator/=(const ArrayBase<OtherDerived>& other);
141 ArrayBase<Derived>& array() { return *this; } in array()
[all …]
DSelfCwiseBinaryOp.h25 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived& ArrayBase<Derived>::operator+=(const Scalar& other)
32 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived& ArrayBase<Derived>::operator-=(const Scalar& other)
DArrayWrapper.h42 class ArrayWrapper : public ArrayBase<ArrayWrapper<ExpressionType> >
45 typedef ArrayBase<ArrayWrapper> Base;
DMatrixBase.h493 template<typename OtherDerived> Derived& operator+=(const ArrayBase<OtherDerived>& )
496 template<typename OtherDerived> Derived& operator-=(const ArrayBase<OtherDerived>& )
DArray.h20 typedef ArrayBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > XprBase;
DPlainObjectBase.h79 : public ArrayBase {};
/external/eigen/unsupported/Eigen/src/SpecialFunctions/
DSpecialFunctionsArrayAPI.h28 igamma(const Eigen::ArrayBase<Derived>& a, const Eigen::ArrayBase<ExponentDerived>& x) in igamma()
51 igamma_der_a(const Eigen::ArrayBase<Derived>& a, const Eigen::ArrayBase<ExponentDerived>& x) { in igamma_der_a()
72 gamma_sample_der_alpha(const Eigen::ArrayBase<AlphaDerived>& alpha, const Eigen::ArrayBase<SampleDe… in gamma_sample_der_alpha()
90 igammac(const Eigen::ArrayBase<Derived>& a, const Eigen::ArrayBase<ExponentDerived>& x) in igammac()
112 polygamma(const Eigen::ArrayBase<DerivedN>& n, const Eigen::ArrayBase<DerivedX>& x) in polygamma()
132 betainc(const Eigen::ArrayBase<ArgADerived>& a, const Eigen::ArrayBase<ArgBDerived>& b, const Eigen… in betainc()
156 zeta(const Eigen::ArrayBase<DerivedX>& x, const Eigen::ArrayBase<DerivedQ>& q) in zeta()
DBesselFunctionsArrayAPI.h32 bessel_i0(const Eigen::ArrayBase<Derived>& x) { in bessel_i0()
55 bessel_i0e(const Eigen::ArrayBase<Derived>& x) { in bessel_i0e()
77 bessel_i1(const Eigen::ArrayBase<Derived>& x) { in bessel_i1()
100 bessel_i1e(const Eigen::ArrayBase<Derived>& x) { in bessel_i1e()
122 bessel_k0(const Eigen::ArrayBase<Derived>& x) { in bessel_k0()
145 bessel_k0e(const Eigen::ArrayBase<Derived>& x) { in bessel_k0e()
167 bessel_k1(const Eigen::ArrayBase<Derived>& x) { in bessel_k1()
190 bessel_k1e(const Eigen::ArrayBase<Derived>& x) { in bessel_k1e()
212 bessel_j0(const Eigen::ArrayBase<Derived>& x) { in bessel_j0()
234 bessel_y0(const Eigen::ArrayBase<Derived>& x) { in bessel_y0()
[all …]
/external/eigen/doc/
DCoeffwiseMathFunctionsTable.dox37 a.\link ArrayBase::abs abs\endlink(); \n
51 a.\link ArrayBase::inverse inverse\endlink(); \n
64 a.\link ArrayBase::conjugate conjugate\endlink(); \n
79 a.\link ArrayBase::arg arg\endlink(); \n
96 a.\link ArrayBase::exp exp\endlink(); \n
109 a.\link ArrayBase::log log\endlink(); \n
122 a.\link ArrayBase::log1p log1p\endlink(); \n
133 a.\link ArrayBase::log10 log10\endlink(); \n
149 a.\link ArrayBase::pow pow\endlink(b); \n
150 …\link ArrayBase::pow(const Eigen::ArrayBase< Derived > &x, const Eigen::ArrayBase< ExponentDerived…
[all …]
DClassHierarchy.dox38 …- ArrayBase means dense array expression. This means that an \c %ArrayBase is something that can be
40 expression classes, including \c %Array itself, inherit \c %ArrayBase.
41 …- DenseBase means dense (matrix or array) expression. Both \c %ArrayBase and \c %MatrixBase inherit
54 …\c %Matrix inherits \c %MatrixBase and \c %Array inherits \c %ArrayBase. So does that mean multiple
55 …inheritance? No, because \c %PlainObjectBase \e itself inherits \c %MatrixBase or \c %ArrayBase de…
91 <-- ArrayBase&lt;%Array&gt;
114 <-- ArrayBase&lt;SomeArrayXpr&gt;
DTutorialArrayClass.dox112 operators described above. For example, the \link ArrayBase::abs() .abs() \endlink method takes the…
113 value of each coefficient, while \link ArrayBase::sqrt() .sqrt() \endlink computes the square root …
114 … you have two arrays of the same size, you can call \link ArrayBase::min(const Eigen::ArrayBase<Ot…
140 'converts' them into \link ArrayBase array expressions\endlink, so that coefficient-wise operations
141 can be applied easily. Conversely, \link ArrayBase array expressions \endlink
142 have a \link ArrayBase::matrix() .matrix() \endlink method. As with all Eigen expression abstractio…
144 Both \link MatrixBase::array() .array() \endlink and \link ArrayBase::matrix() .matrix() \endlink
150 \link ArrayBase::matrix() .matrix()\endlink. The exception to this rule is the assignment operator:…
DFunctionsTakingEigenTypes.dox18 …\li ArrayBase: The common base class for all dense array expressions (as opposed to matrix express…
19 …atrix expression, that is, the base class for both \c MatrixBase and \c ArrayBase. It can be used …
41 <b> %ArrayBase Example </b><br/><br/>
45 void print_max_coeff(const ArrayBase<Derived> &a)
77 …s. For the discussion below, Matrix and Array as well as MatrixBase and ArrayBase can be exchanged…
207 \b Note: In the above discussion the terms Matrix and Array and MatrixBase and ArrayBase can be exc…
211 …ters into temporaries, pass them as (const) references to MatrixBase or ArrayBase (so templatize y…
215 …- Functions that take as parameters MatrixBase (or ArrayBase) objects, and potentially need to res…
DCustomizingEigen_Plugins.dox18 …or instance, define \c EIGEN_ARRAYBASE_PLUGIN if you want to extend the ArrayBase class. A full li…
DTutorialReductionsVisitorsBroadcasting.dox6 \link MatrixBase matrices \endlink and \link ArrayBase arrays \endlink.
DPreprocessorDirectives.dox145 - \b EIGEN_ARRAYBASE_PLUGIN - filename of plugin for extending the ArrayBase class.
/external/bcc/src/python/bcc/
Dtable.py814 class ArrayBase(TableBase): class
816 super(ArrayBase, self).__init__(*args, **kwargs)
834 return super(ArrayBase, self).__getitem__(key)
838 super(ArrayBase, self).__setitem__(key, leaf)
842 super(ArrayBase, self).__delitem__(key)
852 return ArrayBase.Iter(self, self.Key)
870 class Array(ArrayBase):
878 class ProgArray(ArrayBase):
909 class CgroupArray(ArrayBase):
923 class PerfEventArray(ArrayBase):
[all …]
/external/eigen/unsupported/Eigen/
DMatrixFunctions89 This function computes the matrix cosine. Use ArrayBase::cos() for computing the entry-wise cosine.
133 Use ArrayBase::exp() if you want to do the latter.
190 Use ArrayBase::log() if you want to do the latter.
247 to the p-th power. Use ArrayBase::pow() if you want to do the latter.
406 This function computes the matrix sine. Use ArrayBase::sin() for computing the entry-wise sine.
446 the entries in the matrix; use ArrayBase::sqrt() if you want to do the
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DR600RegisterInfo.td118 def ArrayBase#Index : R600Reg<"ARRAY_BASE", Index>;
153 (add (sequence "ArrayBase%u", 448, 480))>;
/external/llvm/lib/Target/AMDGPU/
DR600RegisterInfo.td118 def ArrayBase#Index : R600Reg<"ARRAY_BASE", Index>;
152 (add (sequence "ArrayBase%u", 448, 480))>;
/external/eigen/Eigen/src/Core/util/
DForwardDeclarations.h73 template<typename Derived> class ArrayBase;
DXprHelper.h497 typedef ArrayBase<Derived> type;
/external/eigen/test/
Darray_cwise.cpp705 …is_same< internal::global_math_functions_filtering_base<Array2i>::type, ArrayBase<Array2i> >::valu… in EIGEN_DECLARE_TEST()
708 ArrayBase<Xpr> in EIGEN_DECLARE_TEST()
/external/eigen/Eigen/
DCore285 #include "src/Core/ArrayBase.h"
/external/tensorflow/third_party/eigen3/
DLICENSE469 ./Eigen/src/Core/ArrayBase.h