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

  /external/eigen/test/
stddeque.cpp 23 std::deque<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
29 typename std::deque<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator vi = v.begin();
30 typename std::deque<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator wi = w.begin();
52 std::deque<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y);
58 typename std::deque<TransformType,Eigen::aligned_allocator<TransformType> >::iterator vi = v.begin();
59 typename std::deque<TransformType,Eigen::aligned_allocator<TransformType> >::iterator wi = w.begin();
81 std::deque<QuaternionType,Eigen::aligned_allocator<QuaternionType> > v(10), w(20, y);
87 typename std::deque<QuaternionType,Eigen::aligned_allocator<QuaternionType> >::iterator vi = v.begin();
88 typename std::deque<QuaternionType,Eigen::aligned_allocator<QuaternionType> >::iterator wi = w.begin();
stdlist.cpp 23 std::list<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
29 typename std::list<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator vi = v.begin();
30 typename std::list<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator wi = w.begin();
52 std::list<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y);
58 typename std::list<TransformType,Eigen::aligned_allocator<TransformType> >::iterator vi = v.begin();
59 typename std::list<TransformType,Eigen::aligned_allocator<TransformType> >::iterator wi = w.begin();
81 std::list<QuaternionType,Eigen::aligned_allocator<QuaternionType> > v(10), w(20, y);
87 typename std::list<QuaternionType,Eigen::aligned_allocator<QuaternionType> >::iterator vi = v.begin();
88 typename std::list<QuaternionType,Eigen::aligned_allocator<QuaternionType> >::iterator wi = w.begin();
stdvector.cpp 20 std::vector<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
55 std::vector<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y);
90 std::vector<QuaternionType,Eigen::aligned_allocator<QuaternionType> > v(10), w(20, y);
  /external/eigen/Eigen/src/StlSupport/
details.h 15 #define EIGEN_ALIGNED_ALLOCATOR Eigen::aligned_allocator
  /external/eigen/unsupported/doc/examples/
BVH_Example.cpp 27 typedef std::vector<Vector2d, aligned_allocator<Vector2d> > StdVectorOfVector2d;
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 72 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/Core/util/
Memory.h 696 /** \class aligned_allocator
705 * aligned_allocator<std::pair<const int, Matrix4f> > > my_map_mat4;
713 class aligned_allocator : public std::allocator<T> class in namespace:Eigen
727 typedef aligned_allocator<U> other;
730 aligned_allocator() : std::allocator<T>() {} function in class:Eigen::aligned_allocator
732 aligned_allocator(const aligned_allocator& other) : std::allocator<T>(other) {} function in class:Eigen::aligned_allocator
735 aligned_allocator(const aligned_allocator<U>& other) : std::allocator<T>(other) {} function in class:Eigen::aligned_allocator
737 ~aligned_allocator() {}
    [all...]
  /external/eigen/unsupported/test/
BVH.cpp 96 typedef std::vector<VectorType, aligned_allocator<VectorType> > VectorTypeList;
98 typedef std::vector<BallType, aligned_allocator<BallType> > BallTypeList;

Completed in 236 milliseconds