HomeSort by relevance Sort by last modified time
    Searched refs:MapAligned (Results 1 - 5 of 5) sorted by null

  /external/eigen/test/
mapstaticmethods.cpp 31 PlainObjectType::MapAligned(ptr).setZero();
33 PlainObjectType::MapAligned(const_ptr).sum();
36 PlainObjectType::MapAligned(ptr, InnerStride<>(i)).setZero();
38 PlainObjectType::MapAligned(const_ptr, InnerStride<>(i)).sum();
41 PlainObjectType::MapAligned(ptr, InnerStride<3>()).setZero();
43 PlainObjectType::MapAligned(const_ptr, InnerStride<5>()).sum();
46 PlainObjectType::MapAligned(ptr, OuterStride<>(i)).setZero();
48 PlainObjectType::MapAligned(const_ptr, OuterStride<>(i)).sum();
51 PlainObjectType::MapAligned(ptr, OuterStride<3>()).setZero();
53 PlainObjectType::MapAligned(const_ptr, OuterStride<5>()).sum()
    [all...]
dontalign.cpp 42 // bug 219: MapAligned() was giving an assert with EIGEN_DONT_ALIGN, because Map Flags were miscomputed
44 v = VectorType::MapAligned(array, rows);
mapped_matrix.cpp 134 VectorType::MapAligned(array1, size) = VectorType::Random(size);
138 VectorType ma2 = VectorType::MapAligned(array2, size);
  /external/eigen/Eigen/src/Core/
PlainObjectBase.h 596 static inline ConstAlignedMapType MapAligned(const Scalar* data)
598 static inline AlignedMapType MapAligned(Scalar* data)
600 static inline ConstAlignedMapType MapAligned(const Scalar* data, Index size)
602 static inline AlignedMapType MapAligned(Scalar* data, Index size)
604 static inline ConstAlignedMapType MapAligned(const Scalar* data, Index rows, Index cols)
606 static inline AlignedMapType MapAligned(Scalar* data, Index rows, Index cols)
629 static inline typename StridedConstAlignedMapType<Stride<Outer, Inner> >::type MapAligned(const Scalar* data, const Stride<Outer, Inner>& stride)
632 static inline typename StridedAlignedMapType<Stride<Outer, Inner> >::type MapAligned(Scalar* data, const Stride<Outer, Inner>& stride)
635 static inline typename StridedConstAlignedMapType<Stride<Outer, Inner> >::type MapAligned(const Scalar* data, Index size, const Stride<Outer, Inner>& stride)
638 static inline typename StridedAlignedMapType<Stride<Outer, Inner> >::type MapAligned(Scalar* data, Index size, const Stride<Outer, Inner>& stride
    [all...]
  /system/core/libmemunreachable/
Allocator.cpp 119 static void* MapAligned(size_t size, size_t align) {
216 void* mem = MapAligned(kChunkSize, kChunkSize);
308 void* mem = MapAligned(kPageSize, kPageSize);
391 void* ptr = MapAligned(size, kChunkSize);

Completed in 4241 milliseconds