Searched defs:pload (Results 1 - 7 of 7) sorted by relevance

/external/eigen/Eigen/src/Core/arch/SSE/
H A DComplex.h84 template<> EIGEN_STRONG_INLINE Packet2cf pload <Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_ALIGNED_LOAD return Packet2cf(pload<Packet4f>(&numext::real_ref(*from))); } function in namespace:Eigen::internal
304 template<> EIGEN_STRONG_INLINE Packet1cd pload <Packet1cd>(const std::complex<double>* from) function in namespace:Eigen::internal
305 { EIGEN_DEBUG_ALIGNED_LOAD return Packet1cd(pload<Packet2d>((const double*)from)); }
H A DPacketMath.h219 template<> EIGEN_STRONG_INLINE Packet4f pload<Packet4f>(const float* from) { EIGEN_DEBUG_ALIGNED_LOAD return _mm_load_ps(from); } function in namespace:Eigen::internal
220 template<> EIGEN_STRONG_INLINE Packet2d pload<Packet2d>(const double* from) { EIGEN_DEBUG_ALIGNED_LOAD return _mm_load_pd(from); } function in namespace:Eigen::internal
221 template<> EIGEN_STRONG_INLINE Packet4i pload<Packet4i>(const int* from) { EIGEN_DEBUG_ALIGNED_LOAD return _mm_load_si128(reinterpret_cast<const Packet4i*>(from)); } function in namespace:Eigen::internal
/external/eigen/Eigen/src/Core/arch/AltiVec/
H A DComplex.h61 res.v = pload<Packet4f>((const float *)&from);
97 template<> EIGEN_STRONG_INLINE Packet2cf pload <Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_ALIGNED_LOAD return Packet2cf(pload<Packet4f>((const float*)from)); } function in namespace:Eigen::internal
H A DPacketMath.h259 template<> EIGEN_STRONG_INLINE Packet4f pload<Packet4f>(const float* from) { EIGEN_DEBUG_ALIGNED_LOAD return vec_ld(0, from); } function in namespace:Eigen::internal
260 template<> EIGEN_STRONG_INLINE Packet4i pload<Packet4i>(const int* from) { EIGEN_DEBUG_ALIGNED_LOAD return vec_ld(0, from); } function in namespace:Eigen::internal
289 if((ptrdiff_t(&from) % 16) == 0) p = pload<Packet4f>(from);
296 if((ptrdiff_t(&from) % 16) == 0) p = pload<Packet4i>(from);
/external/eigen/Eigen/src/Core/arch/NEON/
H A DComplex.h105 template<> EIGEN_STRONG_INLINE Packet2cf pload<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_ALIGNED_LOAD return Packet2cf(pload<Packet4f>((const float*)from)); } function in namespace:Eigen::internal
H A DPacketMath.h185 template<> EIGEN_STRONG_INLINE Packet4f pload<Packet4f>(const float* from) { EIGEN_DEBUG_ALIGNED_LOAD return vld1q_f32(from); } function in namespace:Eigen::internal
186 template<> EIGEN_STRONG_INLINE Packet4i pload<Packet4i>(const int* from) { EIGEN_DEBUG_ALIGNED_LOAD return vld1q_s32(from); } function in namespace:Eigen::internal
/external/eigen/Eigen/src/Core/
H A DGenericPacketMath.h153 pload(const typename unpacket_traits<Packet>::type* from) { return *from; } function in namespace:Eigen::internal
290 return pload<Packet>(from);

Completed in 321 milliseconds