Home
last modified time | relevance | path

Searched refs:pfirst (Results 1 – 12 of 12) sorted by relevance

/external/eigen/Eigen/src/Core/arch/SSE/
DPacketMath.h324 template<> EIGEN_STRONG_INLINE float pfirst<Packet4f>(const Packet4f& a) { return a.m128_f32[0]; }
325 template<> EIGEN_STRONG_INLINE double pfirst<Packet2d>(const Packet2d& a) { return a.m128d_f64[0]; }
326 template<> EIGEN_STRONG_INLINE int pfirst<Packet4i>(const Packet4i& a) { int x = _mm_cvtsi128_si…
329 template<> EIGEN_STRONG_INLINE float pfirst<Packet4f>(const Packet4f& a) { float x = _mm_cvtss_f32…
330 template<> EIGEN_STRONG_INLINE double pfirst<Packet2d>(const Packet2d& a) { double x = _mm_cvtsd_f6…
331 template<> EIGEN_STRONG_INLINE int pfirst<Packet4i>(const Packet4i& a) { int x = _mm_cvtsi128_si…
333 template<> EIGEN_STRONG_INLINE float pfirst<Packet4f>(const Packet4f& a) { return _mm_cvtss_f32(a)…
334 template<> EIGEN_STRONG_INLINE double pfirst<Packet2d>(const Packet2d& a) { return _mm_cvtsd_f64(a)…
335 template<> EIGEN_STRONG_INLINE int pfirst<Packet4i>(const Packet4i& a) { return _mm_cvtsi128_si3…
393 return pfirst(_mm_hadd_ps(tmp0, tmp0));
[all …]
DComplex.h106 template<> EIGEN_STRONG_INLINE std::complex<float> pfirst<Packet2cf>(const Packet2cf& a)
125 return pfirst(Packet2cf(_mm_add_ps(a.v, _mm_movehl_ps(a.v,a.v))));
135 return pfirst(pmul(a, Packet2cf(_mm_movehl_ps(a.v,a.v))));
313 template<> EIGEN_STRONG_INLINE std::complex<double> pfirst<Packet1cd>(const Packet1cd& a)
324 return pfirst(a);
334 return pfirst(a);
/external/eigen/Eigen/src/Core/arch/AltiVec/
DPacketMath.h341 template<> EIGEN_STRONG_INLINE float pfirst<Packet4f>(const Packet4f& a) { float EIGEN_ALIGN16 x[4…
342 template<> EIGEN_STRONG_INLINE int pfirst<Packet4i>(const Packet4i& a) { int EIGEN_ALIGN16 x[4…
357 return pfirst(sum);
393 return pfirst(sum);
430 return pfirst(pmul(prod, (Packet4f)vec_sld(prod, prod, 4)));
446 return pfirst(res);
454 return pfirst(res);
463 return pfirst(res);
471 return pfirst(res);
DComplex.h110 template<> EIGEN_STRONG_INLINE std::complex<float> pfirst<Packet2cf>(const Packet2cf& a)
130 return pfirst(Packet2cf(b));
152 return pfirst(prod);
/external/eigen/Eigen/src/Core/products/
DGeneralMatrixVector.h161 res[j] = cj.pmadd(lhs0[j], pfirst(ptmp0), res[j]);
162 res[j] = cj.pmadd(lhs1[j], pfirst(ptmp1), res[j]);
163 res[j] = cj.pmadd(lhs2[j], pfirst(ptmp2), res[j]);
164 res[j] = cj.pmadd(lhs3[j], pfirst(ptmp3), res[j]);
227 res[j] = cj.pmadd(lhs0[j], pfirst(ptmp0), res[j]);
228 res[j] = cj.pmadd(lhs1[j], pfirst(ptmp1), res[j]);
229 res[j] = cj.pmadd(lhs2[j], pfirst(ptmp2), res[j]);
230 res[j] = cj.pmadd(lhs3[j], pfirst(ptmp3), res[j]);
249 res[j] += cj.pmul(lhs0[j], pfirst(ptmp0));
261 res[i] += cj.pmul(lhs0[i], pfirst(ptmp0));
/external/qemu/
Dcharpipe.h21 extern int qemu_chr_open_charpipe( CharDriverState* *pfirst, CharDriverState* *psecond );
Dcharpipe.c232 qemu_chr_open_charpipe( CharDriverState* *pfirst, CharDriverState* *psecond ) in qemu_chr_open_charpipe() argument
243 *pfirst = NULL; in qemu_chr_open_charpipe()
251 *pfirst = cp->a->cs; in qemu_chr_open_charpipe()
/external/eigen/Eigen/src/Core/arch/NEON/
DPacketMath.h213 template<> EIGEN_STRONG_INLINE float pfirst<Packet4f>(const Packet4f& a) { float EIGEN_ALIGN16 x[4…
214 template<> EIGEN_STRONG_INLINE int pfirst<Packet4i>(const Packet4i& a) { int EIGEN_ALIGN16 x[4…
DComplex.h118 template<> EIGEN_STRONG_INLINE std::complex<float> pfirst<Packet2cf>(const Packet2cf& a)
/external/eigen/Eigen/src/Core/
DGenericPacketMath.h188 template<typename Packet> inline typename unpacket_traits<Packet>::type pfirst(const Packet& a) in pfirst() function
/external/qemu/docs/
DCHAR-DEVICES.TXT188 int qemu_chr_open_pipe(CharDriverState* *pfirst,
/external/eigen/test/
Dpacketmath.cpp169 …VERIFY(internal::isApprox(data1[0], internal::pfirst(internal::pload<Packet>(data1))) && "internal… in packetmath()