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

  /external/eigen/Eigen/src/Core/util/
Macros.h 635 // This section also defines macros EIGEN_ALIGN_TO_BOUNDARY(N) and the shortcuts EIGEN_ALIGN{8,16,32,_MAX}
640 /* EIGEN_ALIGN_TO_BOUNDARY(n) forces data to be n-byte aligned. This is used to satisfy SIMD requirements.
648 #define EIGEN_ALIGN_TO_BOUNDARY(n) __align__(n)
650 #define EIGEN_ALIGN_TO_BOUNDARY(n) __attribute__((aligned(n)))
652 #define EIGEN_ALIGN_TO_BOUNDARY(n) __declspec(align(n))
655 #define EIGEN_ALIGN_TO_BOUNDARY(n) __attribute__((aligned(n)))
749 // Shortcuts to EIGEN_ALIGN_TO_BOUNDARY
750 #define EIGEN_ALIGN8 EIGEN_ALIGN_TO_BOUNDARY(8)
751 #define EIGEN_ALIGN16 EIGEN_ALIGN_TO_BOUNDARY(16)
752 #define EIGEN_ALIGN32 EIGEN_ALIGN_TO_BOUNDARY(32
    [all...]
  /external/eigen/Eigen/src/Core/
DenseStorage.h 85 EIGEN_ALIGN_TO_BOUNDARY(8) T array[Size];
104 EIGEN_ALIGN_TO_BOUNDARY(16) T array[Size];
123 EIGEN_ALIGN_TO_BOUNDARY(32) T array[Size];
142 EIGEN_ALIGN_TO_BOUNDARY(64) T array[Size];
  /external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
EventCount.h 173 EIGEN_ALIGN_TO_BOUNDARY(128) std::atomic<Waiter*> next;

Completed in 90 milliseconds