Home | History | Annotate | Download | only in eigen2

Lines Matching refs:VectorType

12 template<typename VectorType> void map_class_vector(const VectorType& m)
14 typedef typename VectorType::Scalar Scalar;
24 Map<VectorType, Aligned>(array1, size) = VectorType::Random(size);
25 Map<VectorType>(array2, size) = Map<VectorType>(array1, size);
26 Map<VectorType>(array3unaligned, size) = Map<VectorType>((const Scalar*)array1, size); // test non-const-correctness support in eigen2
27 VectorType ma1 = Map<VectorType>(array1, size);
28 VectorType ma2 = Map<VectorType, Aligned>(array2, size);
29 VectorType ma3 = Map<VectorType>(array3unaligned, size);
66 template<typename VectorType> void map_static_methods(const VectorType& m)
68 typedef typename VectorType::Scalar Scalar;
78 VectorType::MapAligned(array1, size) = VectorType::Random(size);
79 VectorType::Map(array2, size) = VectorType::Map(array1, size);
80 VectorType::Map(array3unaligned, size) = VectorType::Map(array1, size);
81 VectorType ma1 = VectorType::Map(array1, size);
82 VectorType ma2 = VectorType::MapAligned(array2, size);
83 VectorType ma3 = VectorType::Map(array3unaligned, size);