OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ploadu
(Results
1 - 7
of
7
) sorted by null
/external/eigen/Eigen/src/Core/arch/AltiVec/
Complex.h
63
res.v =
ploadu
<Packet4f>((const float *)&from);
98
template<> EIGEN_STRONG_INLINE Packet2cf
ploadu
<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_UNALIGNED_LOAD return Packet2cf(
ploadu
<Packet4f>((const float*)from)); }
function in namespace:Eigen::internal
PacketMath.h
259
template<> EIGEN_STRONG_INLINE Packet4f
ploadu
<Packet4f>(const float* from)
function in namespace:Eigen::internal
271
template<> EIGEN_STRONG_INLINE Packet4i
ploadu
<Packet4i>(const int* from)
function in namespace:Eigen::internal
287
else p =
ploadu
<Packet4f>(from);
294
else p =
ploadu
<Packet4i>(from);
/external/eigen/Eigen/src/Core/arch/SSE/
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))); }
function in namespace:Eigen::internal
300
template<> EIGEN_STRONG_INLINE Packet1cd
ploadu
<Packet1cd>(const std::complex<double>* from)
function in namespace:Eigen::internal
301
{ EIGEN_DEBUG_UNALIGNED_LOAD return Packet1cd(
ploadu
<Packet2d>((const double*)from)); }
303
{ /* here we really have to use unaligned loads :( */ return
ploadu
<Packet1cd>(&from); }
PacketMath.h
207
template<> EIGEN_STRONG_INLINE Packet4f
ploadu
<Packet4f>(const float* from) {
function in namespace:Eigen::internal
221
template<> EIGEN_STRONG_INLINE Packet2d
ploadu
<Packet2d>(const double* from) { EIGEN_DEBUG_UNALIGNED_LOAD return _mm_loadu_pd(from); }
function in namespace:Eigen::internal
222
template<> EIGEN_STRONG_INLINE Packet4i
ploadu
<Packet4i>(const int* from) { EIGEN_DEBUG_UNALIGNED_LOAD return _mm_loadu_si128(reinterpret_cast<const Packet4i*>(from)); }
function in namespace:Eigen::internal
241
template<> EIGEN_STRONG_INLINE Packet4f
ploadu
<Packet4f>(const float* from)
function in namespace:Eigen::internal
253
template<> EIGEN_STRONG_INLINE Packet2d
ploadu
<Packet2d>(const double* from)
function in namespace:Eigen::internal
265
template<> EIGEN_STRONG_INLINE Packet4i
ploadu
<Packet4i>(const int* from)
function in namespace:Eigen::internal
/external/eigen/Eigen/src/Core/
GenericPacketMath.h
157
ploadu
(const typename unpacket_traits<Packet>::type* from) { return *from; }
function in namespace:Eigen::internal
283
return
ploadu
<Packet>(from);
/external/eigen/Eigen/src/Core/arch/NEON/
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)); }
function in namespace:Eigen::internal
PacketMath.h
185
template<> EIGEN_STRONG_INLINE Packet4f
ploadu
<Packet4f>(const float* from) { EIGEN_DEBUG_UNALIGNED_LOAD return vld1q_f32(from); }
function in namespace:Eigen::internal
186
template<> EIGEN_STRONG_INLINE Packet4i
ploadu
<Packet4i>(const int* from) { EIGEN_DEBUG_UNALIGNED_LOAD return vld1q_s32(from); }
function in namespace:Eigen::internal
Completed in 101 milliseconds