HomeSort by relevance Sort by last modified time
    Searched defs:traits (Results 26 - 50 of 150) sorted by null

12 3 4 5 6

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorTraits.h 48 struct traits<Tensor<Scalar_, NumIndices_, Options_, IndexType_> > struct in namespace:Eigen::internal
66 struct traits<TensorFixedSize<Scalar_, Dimensions, Options_, IndexType_> > struct in namespace:Eigen::internal
84 struct traits<TensorMap<PlainObjectType, Options_, MakePointer_> > struct in namespace:Eigen::internal
85 : public traits<PlainObjectType>
87 typedef traits<PlainObjectType> BaseTraits;
105 struct traits<TensorRef<PlainObjectType> > struct in namespace:Eigen::internal
106 : public traits<PlainObjectType>
108 typedef traits<PlainObjectType> BaseTraits;
  /external/ImageMagick/MagickCore/
attribute.c 421 PixelTrait traits=GetPixelChannelTraits(image,channel);
422 if ((traits == UndefinedPixelTrait) ||
481 traits;
484 traits=GetPixelChannelTraits(image,channel);
485 if ((traits == UndefinedPixelTrait) || (channel == IndexPixelChannel) ||
418 PixelTrait traits=GetPixelChannelTraits(image,channel); local
478 traits; local
1109 traits; local
1173 traits; local
    [all...]
  /external/eigen/Eigen/src/Core/
CwiseBinaryOp.h 18 struct traits<CwiseBinaryOp<BinaryOp, Lhs, Rhs> > struct in namespace:Eigen::internal
20 // we must not inherit from traits<Lhs> since it has
23 typedef typename traits<Ancestor>::XprKind XprKind;
25 RowsAtCompileTime = traits<Ancestor>::RowsAtCompileTime,
26 ColsAtCompileTime = traits<Ancestor>::ColsAtCompileTime,
27 MaxRowsAtCompileTime = traits<Ancestor>::MaxRowsAtCompileTime,
28 MaxColsAtCompileTime = traits<Ancestor>::MaxColsAtCompileTime
39 typedef typename cwise_promote_storage_type<typename traits<Lhs>::StorageKind,
40 typename traits<Rhs>::StorageKind,
42 typedef typename promote_index_type<typename traits<Lhs>::StorageIndex
    [all...]
CwiseNullaryOp.h 17 struct traits<CwiseNullaryOp<NullaryOp, PlainObjectType> > : traits<PlainObjectType> struct in namespace:Eigen::internal
20 Flags = traits<PlainObjectType>::Flags & RowMajorBit
CwiseTernaryOp.h 19 struct traits<CwiseTernaryOp<TernaryOp, Arg1, Arg2, Arg3> > { struct in namespace:Eigen::internal
20 // we must not inherit from traits<Arg1> since it has
23 typedef typename traits<Ancestor>::XprKind XprKind;
25 RowsAtCompileTime = traits<Ancestor>::RowsAtCompileTime,
26 ColsAtCompileTime = traits<Ancestor>::ColsAtCompileTime,
27 MaxRowsAtCompileTime = traits<Ancestor>::MaxRowsAtCompileTime,
28 MaxColsAtCompileTime = traits<Ancestor>::MaxColsAtCompileTime
38 typedef typename internal::traits<Arg1>::StorageKind StorageKind;
39 typedef typename internal::traits<Arg1>::StorageIndex StorageIndex;
86 typename internal::traits<Arg1Type>::StorageKind>
    [all...]
Diagonal.h 37 struct traits<Diagonal<MatrixType,DiagIndex> > struct in namespace:Eigen::internal
38 : traits<MatrixType>
Matrix.h 18 struct traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > struct in namespace:Eigen::internal
Ref.h 18 struct traits<Ref<_PlainObjectType, _Options, _StrideType> > struct in namespace:Eigen::internal
19 : public traits<Map<_PlainObjectType, _Options, _StrideType> >
25 Flags = traits<Map<_PlainObjectType, _Options, _StrideType> >::Flags | NestByRefBit,
26 Alignment = traits<Map<_PlainObjectType, _Options, _StrideType> >::Alignment
44 AlignmentMatch = (int(traits<PlainObjectType>::Alignment)==int(Unaligned)) || (DerivedAlignment >= int(Alignment)), // FIXME the first condition is not very clear, it should be replaced by the required alignment
54 struct traits<RefBase<Derived> > : public traits<Derived> {}; struct in namespace:Eigen::internal
61 typedef typename internal::traits<Derived>::PlainObjectType PlainObjectType;
62 typedef typename internal::traits<Derived>::StrideType StrideType;
194 typedef internal::traits<Ref> Traits
    [all...]
Reverse.h 20 struct traits<Reverse<MatrixType, Direction> > struct in namespace:Eigen::internal
21 : traits<MatrixType>
24 typedef typename traits<MatrixType>::StorageKind StorageKind;
25 typedef typename traits<MatrixType>::XprKind XprKind;
SolveTriangular.h 25 // small helper struct extracting some traits on the underlying solver operation
173 enum { copy = (internal::traits<OtherDerived>::Flags & RowMajorBit) && OtherDerived::IsVectorAtCompileTime && OtherDerived::SizeAtCompileTime!=1};
198 struct traits<triangular_solve_retval<Side, TriangularType, Rhs> > struct in namespace:Eigen::internal
Transpositions.h 18 typedef internal::traits<Derived> Traits;
22 typedef typename Traits::IndicesType IndicesType;
120 struct traits<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,_StorageIndex> > struct in namespace:Eigen::internal
121 : traits<PermutationMatrix<SizeAtCompileTime,MaxSizeAtCompileTime,_StorageIndex> >
160 typedef internal::traits<Transpositions> Traits;
164 typedef typename Traits::IndicesType IndicesType;
221 struct traits<Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,_StorageIndex>,_PacketAccess> > struct in namespace:Eigen::internal
222 : traits<PermutationMatrix<SizeAtCompileTime,MaxSizeAtCompileTime,_StorageIndex>
280 struct traits<TranspositionsWrapper<_IndicesType> > struct in namespace:Eigen::internal
362 struct traits<Transpose<TranspositionsBase<Derived> > > struct in namespace:Eigen::internal
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 20 struct traits<HessenbergDecompositionMatrixHReturnType<MatrixType> > struct in namespace:Eigen::internal
  /external/eigen/Eigen/src/Geometry/
AngleAxis.h 42 template<typename _Scalar> struct traits<AngleAxis<_Scalar> > struct in namespace:Eigen::internal
Rotation2D.h 34 template<typename _Scalar> struct traits<Rotation2D<_Scalar> > struct in namespace:Eigen::internal
  /external/eigen/Eigen/src/IterativeLinearSolvers/
BiCGSTAB.h 118 struct traits<BiCGSTAB<_MatrixType,_Preconditioner> > struct in namespace:Eigen::internal
ConjugateGradient.h 101 struct traits<ConjugateGradient<_MatrixType,_UpLo,_Preconditioner> > struct in namespace:Eigen::internal
LeastSquareConjugateGradient.h 103 struct traits<LeastSquaresConjugateGradient<_MatrixType,_Preconditioner> > struct in namespace:Eigen::internal
  /external/eigen/Eigen/src/SparseLU/
SparseLU_column_dfs.h 103 column_dfs_traits<IndexVector, ScalarVector> traits(jcol, jsuper, glu, *this);
116 xplore, glu, nextl, krow, traits); local
  /external/eigen/test/
vectorization_logic.cpp 32 typedef internal::copy_using_evaluator_traits<internal::evaluator<Dst>,internal::evaluator<Src>, internal::assign_op<typename Dst::Scalar,typename Src::Scalar> > traits; typedef
33 bool res = traits::Traversal==traversal;
35 res = res && (int(traits::Unrolling)==InnerUnrolling || int(traits::Unrolling)==CompleteUnrolling);
37 res = res && int(traits::Unrolling)==unrolling;
44 traits::debug();
46 << " got " << demangle_traversal(traits::Traversal) << "\n";
48 << " got " << demangle_unrolling(traits::Unrolling) << "\n";
56 typedef internal::copy_using_evaluator_traits<internal::evaluator<Dst>,internal::evaluator<Src>, internal::assign_op<typename Dst::Scalar,typename Src::Scalar> > traits; typedef
57 bool res = traits::Traversal==traversal && traits::Unrolling==unrolling
77 typedef internal::redux_traits<internal::scalar_sum_op<Scalar,Scalar>,internal::redux_evaluator<Xpr> > traits; typedef
    [all...]
  /external/eigen/unsupported/Eigen/src/EulerAngles/
EulerAngles.h 378 struct traits<EulerAngles<_Scalar, _System> > struct in namespace:Eigen::internal
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 217 struct traits<GMRES<_MatrixType,_Preconditioner> > struct in namespace:Eigen::internal
MINRES.h 152 struct traits<MINRES<_MatrixType,_UpLo,_Preconditioner> > struct in namespace:Eigen::internal
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h 35 struct traits<SkylineMatrix<_Scalar, _Options> > { struct in namespace:Eigen::internal
  /frameworks/compile/mclinker/include/mcld/ADT/
HashIterator.h 243 template <typename IteratorBase, typename Traits>
246 typedef Traits traits; typedef in class:mcld::HashIterator
247 typedef typename traits::pointer pointer;
248 typedef typename traits::reference reference;
253 typedef HashIterator<IteratorBase, Traits> Self;
255 typedef typename traits::nonconst_traits nonconst_traits;
258 typedef typename traits::const_traits const_traits;
  /external/ImageMagick/Magick++/lib/
Statistic.cpp 464 PixelTrait traits=GetPixelChannelTraits(image_.constImage(),channel); local
465 if (traits == UndefinedPixelTrait)
467 if ((traits & UpdatePixelTrait) == 0)
578 traits; local
585 traits=GetPixelChannelTraits(image_.constImage(),RedPixelChannel);
586 if ((traits & UpdatePixelTrait) != 0)
589 traits=GetPixelChannelTraits(image_.constImage(),GreenPixelChannel);
590 if ((traits & UpdatePixelTrait) != 0)
593 traits=GetPixelChannelTraits(image_.constImage(),BluePixelChannel);
594 if ((traits & UpdatePixelTrait) != 0
646 PixelTrait traits=GetPixelChannelTraits(image_.constImage(),channel); local
    [all...]

Completed in 567 milliseconds

12 3 4 5 6