OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EIGEN_DEBUG_UNALIGNED_LOAD
(Results
1 - 7
of
7
) sorted by null
/external/eigen/test/
unalignedcount.cpp
16
#define
EIGEN_DEBUG_UNALIGNED_LOAD
{ nb_loadu++; }
/external/eigen/Eigen/src/Core/
GenericPacketMath.h
30
#ifndef
EIGEN_DEBUG_UNALIGNED_LOAD
31
#define
EIGEN_DEBUG_UNALIGNED_LOAD
/external/eigen/Eigen/src/Core/arch/SSE/
PacketMath.h
208
EIGEN_DEBUG_UNALIGNED_LOAD
221
template<> EIGEN_STRONG_INLINE Packet2d ploadu<Packet2d>(const double* from) {
EIGEN_DEBUG_UNALIGNED_LOAD
return _mm_loadu_pd(from); }
222
template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from) {
EIGEN_DEBUG_UNALIGNED_LOAD
return _mm_loadu_si128(reinterpret_cast<const Packet4i*>(from)); }
243
EIGEN_DEBUG_UNALIGNED_LOAD
255
EIGEN_DEBUG_UNALIGNED_LOAD
267
EIGEN_DEBUG_UNALIGNED_LOAD
Complex.h
85
template<> EIGEN_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::complex<float>* from) {
EIGEN_DEBUG_UNALIGNED_LOAD
return Packet2cf(ploadu<Packet4f>(&real_ref(*from))); }
301
{
EIGEN_DEBUG_UNALIGNED_LOAD
return Packet1cd(ploadu<Packet2d>((const double*)from)); }
/external/eigen/Eigen/src/Core/arch/NEON/
PacketMath.h
185
template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) {
EIGEN_DEBUG_UNALIGNED_LOAD
return vld1q_f32(from); }
186
template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from) {
EIGEN_DEBUG_UNALIGNED_LOAD
return vld1q_s32(from); }
Complex.h
109
template<> EIGEN_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::complex<float>* from) {
EIGEN_DEBUG_UNALIGNED_LOAD
return Packet2cf(ploadu<Packet4f>((const float*)from)); }
/external/eigen/Eigen/src/Core/arch/AltiVec/
Complex.h
98
template<> EIGEN_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::complex<float>* from) {
EIGEN_DEBUG_UNALIGNED_LOAD
return Packet2cf(ploadu<Packet4f>((const float*)from)); }
Completed in 105 milliseconds