Home
last modified time | relevance | path

Searched refs:aligned_allocator (Results 1 – 12 of 12) sorted by relevance

/external/eigen/test/
Dstdlist.cpp23 …std::list<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y); in check_stdlist_matrix()
29 typename std::list<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator vi = v.begin(); in check_stdlist_matrix()
30 typename std::list<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator wi = w.begin(); in check_stdlist_matrix()
52 std::list<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y); in check_stdlist_transform()
58 …typename std::list<TransformType,Eigen::aligned_allocator<TransformType> >::iterator vi = v.begin(… in check_stdlist_transform()
59 …typename std::list<TransformType,Eigen::aligned_allocator<TransformType> >::iterator wi = w.begin(… in check_stdlist_transform()
81 std::list<QuaternionType,Eigen::aligned_allocator<QuaternionType> > v(10), w(20, y); in check_stdlist_quaternion()
87 …typename std::list<QuaternionType,Eigen::aligned_allocator<QuaternionType> >::iterator vi = v.begi… in check_stdlist_quaternion()
88 …typename std::list<QuaternionType,Eigen::aligned_allocator<QuaternionType> >::iterator wi = w.begi… in check_stdlist_quaternion()
Dstddeque.cpp23 …std::deque<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y… in check_stddeque_matrix()
29 typename std::deque<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator vi = v.begin(); in check_stddeque_matrix()
30 typename std::deque<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator wi = w.begin(); in check_stddeque_matrix()
52 std::deque<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y); in check_stddeque_transform()
58 …typename std::deque<TransformType,Eigen::aligned_allocator<TransformType> >::iterator vi = v.begin… in check_stddeque_transform()
59 …typename std::deque<TransformType,Eigen::aligned_allocator<TransformType> >::iterator wi = w.begin… in check_stddeque_transform()
81 std::deque<QuaternionType,Eigen::aligned_allocator<QuaternionType> > v(10), w(20, y); in check_stddeque_quaternion()
87 …typename std::deque<QuaternionType,Eigen::aligned_allocator<QuaternionType> >::iterator vi = v.beg… in check_stddeque_quaternion()
88 …typename std::deque<QuaternionType,Eigen::aligned_allocator<QuaternionType> >::iterator wi = w.beg… in check_stddeque_quaternion()
Dstdvector.cpp20 …std::vector<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, … in check_stdvector_matrix()
55 std::vector<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y); in check_stdvector_transform()
90 std::vector<QuaternionType,Eigen::aligned_allocator<QuaternionType> > v(10), w(20, y); in check_stdvector_quaternion()
/external/eigen/doc/
DStlContainers.dox11 … A 16-byte-aligned allocator must be used. Eigen does provide one ready for use: aligned_allocator.
18 …yte-aligned locations. Fortunately, Eigen does provide such an allocator: Eigen::aligned_allocator.
27 Eigen::aligned_allocator<std::pair<const int, Eigen::Vector4f> > >
33 …had to specialize it for the Eigen::aligned_allocator type. In practice you \b must use the Eigen:…
39 std::vector<Eigen::Vector4f,Eigen::aligned_allocator<Eigen::Vector4f> >
DA05_PortingFrom2To3.dox281aligned_allocator<T> as your allocator type. So for example, if you use std::vector<Matrix4f>, you…
287 <td> \code std::vector<Matrix4f, aligned_allocator<Matrix4f> > \endcode </td>
DUnalignedArrayAssert.dox63 …\c std::allocate_shared for which is the solution is to use an \ref aligned_allocator "aligned all…
/external/eigen/Eigen/src/Core/util/
DMemory.h713 class aligned_allocator : public std::allocator<T>
727 typedef aligned_allocator<U> other;
730 aligned_allocator() : std::allocator<T>() {}
732 aligned_allocator(const aligned_allocator& other) : std::allocator<T>(other) {}
735 aligned_allocator(const aligned_allocator<U>& other) : std::allocator<T>(other) {}
737 ~aligned_allocator() {}
/external/eigen/unsupported/Eigen/src/BVH/
DKdBVH.h72 typedef std::vector<Object, aligned_allocator<Object> > ObjectList;
75 typedef std::vector<Volume, aligned_allocator<Volume> > VolumeList;
171 typedef std::vector<VIPair, aligned_allocator<VIPair> > VIPairList;
/external/eigen/Eigen/src/StlSupport/
Ddetails.h15 #define EIGEN_ALIGNED_ALLOCATOR Eigen::aligned_allocator
/external/eigen/unsupported/doc/examples/
DBVH_Example.cpp27 typedef std::vector<Vector2d, aligned_allocator<Vector2d> > StdVectorOfVector2d; in main()
/external/eigen/unsupported/test/
DBVH.cpp96 typedef std::vector<VectorType, aligned_allocator<VectorType> > VectorTypeList;
98 typedef std::vector<BallType, aligned_allocator<BallType> > BallTypeList;
/external/tensorflow/tensorflow/lite/micro/
Dmicro_allocator.cc372 SimpleMemoryAllocator* aligned_allocator = in MicroAllocator() local
374 memory_allocator_ = aligned_allocator; in MicroAllocator()