HomeSort by relevance Sort by last modified time
    Searched defs:traits (Results 76 - 100 of 105) sorted by null

1 2 34 5

  /external/eigen/unsupported/Eigen/src/KroneckerProduct/
KroneckerTensorProduct.h 83 typedef typename internal::traits<KroneckerProductSparse>::Index Index;
153 struct traits<KroneckerProduct<_Lhs,_Rhs> > struct in namespace:Eigen::internal
160 Rows = size_at_compile_time<traits<Lhs>::RowsAtCompileTime, traits<Rhs>::RowsAtCompileTime>::ret,
161 Cols = size_at_compile_time<traits<Lhs>::ColsAtCompileTime, traits<Rhs>::ColsAtCompileTime>::ret,
162 MaxRows = size_at_compile_time<traits<Lhs>::MaxRowsAtCompileTime, traits<Rhs>::MaxRowsAtCompileTime>::ret,
163 MaxCols = size_at_compile_time<traits<Lhs>::MaxColsAtCompileTime, traits<Rhs>::MaxColsAtCompileTime>::ret
171 struct traits<KroneckerProductSparse<_Lhs,_Rhs> > struct in namespace:Eigen::internal
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixLogarithm.h 442 typedef internal::traits<PlainObject> Traits;
443 static const int RowsAtCompileTime = Traits::RowsAtCompileTime;
444 static const int ColsAtCompileTime = Traits::ColsAtCompileTime;
467 struct traits<MatrixLogarithmReturnValue<Derived> > struct in namespace:Eigen::internal
MatrixSquareRoot.h 312 template <typename MatrixType, int IsComplex = NumTraits<typename internal::traits<MatrixType>::Scalar>::IsComplex>
451 struct traits<MatrixSquareRootReturnValue<Derived> > struct in namespace:Eigen::internal
MatrixPower.h 493 struct traits< MatrixPowerRetval<MatrixPowerType> > struct in namespace:Eigen::internal
497 struct traits< MatrixPowerReturnValue<Derived> > struct in namespace:Eigen::internal
MatrixFunction.h 36 int IsComplex = NumTraits<typename internal::traits<MatrixType>::Scalar>::IsComplex>
72 typedef internal::traits<MatrixType> Traits;
73 typedef typename Traits::Scalar Scalar;
74 static const int Rows = Traits::RowsAtCompileTime;
75 static const int Cols = Traits::ColsAtCompileTime;
77 static const int MaxRows = Traits::MaxRowsAtCompileTime;
78 static const int MaxCols = Traits::MaxColsAtCompileTime;
127 typedef internal::traits<MatrixType> Traits;
540 struct traits<MatrixFunctionReturnValue<Derived> > struct in namespace:Eigen::internal
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineProduct.h 24 struct internal::traits<SkylineProduct<LhsNested, RhsNested, ProductMode> > { struct in class:Eigen::internal
63 public traits<SkylineProduct<LhsNested, RhsNested, ProductMode> >::Base {
70 typedef typename traits<SkylineProduct>::_LhsNested _LhsNested;
71 typedef typename traits<SkylineProduct>::_RhsNested _RhsNested;
125 typedef typename traits<Lhs>::Scalar Scalar;
188 typedef typename traits<Lhs>::Scalar Scalar;
249 int LhsStorageOrder = traits<Lhs>::Flags&RowMajorBit>
254 typedef typename traits<typename remove_all<Lhs>::type>::Scalar Scalar;
263 typedef typename traits<typename remove_all<Lhs>::type>::Scalar Scalar;
  /external/llvm/include/llvm/Support/
Registry.h 40 /// Traits for registry entries. If using other than SimpleRegistryEntry, it
41 /// is necessary to define an alternate traits class.
62 typedef U traits; typedef in class:llvm::Registry
  /frameworks/compile/mclinker/include/mcld/Support/
GCFactory.h 56 template <typename ChunkType, class Traits>
60 typedef Traits traits; typedef in class:mcld::DataIterator
61 typedef typename traits::pointer pointer;
62 typedef typename traits::reference reference;
63 typedef DataIterator<ChunkType, Traits> Self;
66 typedef typename traits::nonconst_traits nonconst_traits;
68 typedef typename traits::const_traits const_traits;
  /frameworks/rs/cpp/util/
TypeHelpers.h 30 * Types traits
41 struct traits { struct in namespace:android::RSC
61 traits<T>::has_trivial_ctor && traits<U>::has_trivial_ctor,
63 traits<T>::has_trivial_dtor && traits<U>::has_trivial_dtor,
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
67 traits<T>::has_trivial_move && traits<U>::has_trivial_mov
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/cpp/util/
TypeHelpers.h 30 * Types traits
41 struct traits { struct in namespace:android::RSC
61 traits<T>::has_trivial_ctor && traits<U>::has_trivial_ctor,
63 traits<T>::has_trivial_dtor && traits<U>::has_trivial_dtor,
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
67 traits<T>::has_trivial_move && traits<U>::has_trivial_mov
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/util/
TypeHelpers.h 30 * Types traits
41 struct traits { struct in namespace:android::RSC
61 traits<T>::has_trivial_ctor && traits<U>::has_trivial_ctor,
63 traits<T>::has_trivial_dtor && traits<U>::has_trivial_dtor,
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
67 traits<T>::has_trivial_move && traits<U>::has_trivial_mov
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/cpp/util/
TypeHelpers.h 30 * Types traits
41 struct traits { struct in namespace:android::RSC
61 traits<T>::has_trivial_ctor && traits<U>::has_trivial_ctor,
63 traits<T>::has_trivial_dtor && traits<U>::has_trivial_dtor,
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
67 traits<T>::has_trivial_move && traits<U>::has_trivial_mov
    [all...]
  /external/eigen/Eigen/src/Core/
TriangularMatrix.h 34 Mode = internal::traits<Derived>::Mode,
35 CoeffReadCost = internal::traits<Derived>::CoeffReadCost,
36 RowsAtCompileTime = internal::traits<Derived>::RowsAtCompileTime,
37 ColsAtCompileTime = internal::traits<Derived>::ColsAtCompileTime,
38 MaxRowsAtCompileTime = internal::traits<Derived>::MaxRowsAtCompileTime,
39 MaxColsAtCompileTime = internal::traits<Derived>::MaxColsAtCompileTime
41 typedef typename internal::traits<Derived>::Scalar Scalar;
42 typedef typename internal::traits<Derived>::StorageKind StorageKind;
43 typedef typename internal::traits<Derived>::Index Index;
44 typedef typename internal::traits<Derived>::DenseMatrixType DenseMatrixType
138 struct traits<TriangularView<MatrixType, _Mode> > : traits<MatrixType> struct in namespace:Eigen::internal
    [all...]
GeneralProduct.h 193 struct traits<GeneralProduct<Lhs,Rhs,InnerProduct> > struct in namespace:Eigen::internal
194 : traits<Matrix<typename scalar_product_traits<typename Lhs::Scalar, typename Rhs::Scalar>::ReturnType,1,1> >
250 struct traits<GeneralProduct<Lhs,Rhs,OuterProduct> > struct in namespace:Eigen::internal
251 : traits<ProductBase<GeneralProduct<Lhs,Rhs,OuterProduct>, Lhs, Rhs> >
317 struct traits<GeneralProduct<Lhs,Rhs,GemvProduct> > struct in namespace:Eigen::internal
318 : traits<ProductBase<GeneralProduct<Lhs,Rhs,GemvProduct>, Lhs, Rhs> >
VectorwiseOp.h 37 struct traits<PartialReduxExpr<MatrixType, MemberOp, Direction> > struct in namespace:Eigen::internal
38 : traits<MatrixType>
41 typedef typename traits<MatrixType>::StorageKind StorageKind;
42 typedef typename traits<MatrixType>::XprKind XprKind;
62 : TraversalSize * traits<_MatrixTypeNested>::CoeffReadCost + int(CostOpType::value)
75 typedef typename internal::traits<PartialReduxExpr>::MatrixTypeNested MatrixTypeNested;
76 typedef typename internal::traits<PartialReduxExpr>::_MatrixTypeNested _MatrixTypeNested;
178 typename Scalar=typename internal::traits<ExpressionType>::Scalar> struct ReturnType
189 internal::member_redux<BinaryOp,typename internal::traits<ExpressionType>::Scalar>,
563 HNormalized_Size = Direction==Vertical ? internal::traits<ExpressionType>::RowsAtCompileTim
    [all...]
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrix.h 66 typedef gebp_traits<LhsScalar,RhsScalar> Traits;
72 gemm_pack_lhs<LhsScalar, Index, Traits::mr, Traits::LhsProgress, LhsStorageOrder> pack_lhs;
73 gemm_pack_rhs<RhsScalar, Index, Traits::nr, RhsStorageOrder> pack_rhs;
74 gebp_kernel<LhsScalar, RhsScalar, Index, Traits::mr, Traits::nr, ConjugateLhs, ConjugateRhs> gebp;
84 std::size_t sizeW = kc*Traits::WorkSpaceFactor;
155 std::size_t sizeW = kc*Traits::WorkSpaceFactor;
199 struct traits<GeneralProduct<Lhs,Rhs,GemmProduct> > struct in namespace:Eigen::internal
200 : traits<ProductBase<GeneralProduct<Lhs,Rhs,GemmProduct>, Lhs, Rhs>
    [all...]
GeneralBlockPanelKernel.h 85 typedef gebp_traits<LhsScalar,RhsScalar> Traits;
87 kdiv = KcFactor * 2 * Traits::nr
88 * Traits::RhsProgress * sizeof(RhsScalar),
516 typedef gebp_traits<LhsScalar,RhsScalar,ConjugateLhs,ConjugateRhs> Traits;
517 typedef typename Traits::ResScalar ResScalar;
518 typedef typename Traits::LhsPacket LhsPacket;
519 typedef typename Traits::RhsPacket RhsPacket;
520 typedef typename Traits::ResPacket ResPacket;
521 typedef typename Traits::AccPacket AccPacket;
524 Vectorizable = Traits::Vectorizable
541 Traits traits; local
    [all...]
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 21 struct traits<FullPivHouseholderQRMatrixQReturnType<MatrixType> > struct in namespace:Eigen::internal
  /external/eigen/Eigen/src/SPQRSupport/
SuiteSparseQRSupport.h 20 template <typename SPQRType> struct traits<SPQRMatrixQReturnType<SPQRType> > struct in namespace:Eigen::internal
24 template <typename SPQRType> struct traits<SPQRMatrixQTransposeReturnType<SPQRType> > struct in namespace:Eigen::internal
28 template <typename SPQRType, typename Derived> struct traits<SPQR_QProduct<SPQRType, Derived> > struct in namespace:Eigen::internal
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 39 typedef typename internal::traits<Derived>::MatrixType MatrixType;
40 typedef typename internal::traits<Derived>::OrderingType OrderingType;
41 enum { UpLo = internal::traits<Derived>::UpLo };
250 template<typename _MatrixType, int _UpLo, typename _Ordering> struct traits<SimplicialLLT<_MatrixType,_UpLo,_Ordering> > struct in namespace:Eigen::internal
264 template<typename _MatrixType,int _UpLo, typename _Ordering> struct traits<SimplicialLDLT<_MatrixType,_UpLo,_Ordering> > struct in namespace:Eigen::internal
278 template<typename _MatrixType, int _UpLo, typename _Ordering> struct traits<SimplicialCholesky<_MatrixType,_UpLo,_Ordering> > struct in namespace:Eigen::internal
317 typedef internal::traits<SimplicialLLT> Traits;
318 typedef typename Traits::MatrixL MatrixL;
319 typedef typename Traits::MatrixU MatrixU
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseVector.h 30 struct traits<SparseVector<_Scalar, _Options, _Index> > struct in namespace:Eigen::internal
76 enum { IsColVector = internal::traits<SparseVector>::IsColVector };
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h 24 struct traits<DGMRES<_MatrixType,_Preconditioner> > struct in namespace:Eigen::internal
  /frameworks/compile/mclinker/include/mcld/ADT/
BinTree.h 87 template <class DataType, class Traits, class IteratorType>
91 typedef Traits traits; typedef in class:mcld::PolicyIteratorBase
92 typedef typename traits::pointer pointer;
93 typedef typename traits::reference reference;
95 typedef PolicyIteratorBase<value_type, Traits, IteratorType> Self;
98 typedef typename traits::nonconst_traits nonconst_traits;
99 typedef typename traits::const_traits const_traits;
134 template <class DataType, class Traits, class IteratorType>
136 : public PolicyIteratorBase<DataType, Traits, IteratorType>
183 typedef Traits traits; typedef in struct:mcld::TreeIterator
    [all...]
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 42 typedef typename internal::traits<Derived>::Scalar Scalar;
44 typedef typename internal::traits<Derived>::Coefficients Coefficients;
46 Flags = Eigen::internal::traits<Derived>::Flags
84 inline const typename internal::traits<Derived>::Coefficients& coeffs() const { return derived().coeffs(); }
87 inline typename internal::traits<Derived>::Coefficients& coeffs() { return derived().coeffs(); }
213 struct traits<Quaternion<_Scalar,_Options> > struct in namespace:Eigen::internal
219 IsAligned = internal::traits<Coefficients>::Flags & AlignedBit,
229 enum { IsAligned = internal::traits<Quaternion>::IsAligned };
237 typedef typename internal::traits<Quaternion>::Coefficients Coefficients;
306 struct traits<Map<Quaternion<_Scalar>, _Options> > : traits<Quaternion<_Scalar, (int(_Options)&Aligned)==Aligned (…) struct in namespace:Eigen::internal
314 struct traits<Map<const Quaternion<_Scalar>, _Options> > : traits<Quaternion<_Scalar, (int(_Options)&Aligned)==Aligned ? AutoAlign : DontAlign> > struct in namespace:Eigen::internal
    [all...]
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 21 template <typename SparseQRType> struct traits<SparseQRMatrixQReturnType<SparseQRType> > struct in namespace:Eigen::internal
27 template <typename SparseQRType> struct traits<SparseQRMatrixQTransposeReturnType<SparseQRType> > struct in namespace:Eigen::internal
31 template <typename SparseQRType, typename Derived> struct traits<SparseQR_QProduct<SparseQRType, Derived> > struct in namespace:Eigen::internal

Completed in 1311 milliseconds

1 2 34 5