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

  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 74 x = psub(x, p4f_1);
75 e = psub(e, _mm_and_ps(p4f_1, mask));
95 x = psub(x, tmp);
140 fx = psub(tmp, mask);
144 x = psub(x, tmp);
145 x = psub(x, z);
257 y = psub(y, tmp);
346 y = psub(y, tmp);
376 x = pmul(x, psub(pset1<Packet4f>(1.5f), pmul(half, pmul(x,x))));
PacketMath.h 121 template<> EIGEN_STRONG_INLINE Packet4f psub<Packet4f>(const Packet4f& a, const Packet4f& b) { return _mm_sub_ps(a,b); } function in namespace:Eigen::internal
122 template<> EIGEN_STRONG_INLINE Packet2d psub<Packet2d>(const Packet2d& a, const Packet2d& b) { return _mm_sub_pd(a,b); } function in namespace:Eigen::internal
123 template<> EIGEN_STRONG_INLINE Packet4i psub<Packet4i>(const Packet4i& a, const Packet4i& b) { return _mm_sub_epi32(a,b); } function in namespace:Eigen::internal
137 return psub(_mm_setr_epi32(0,0,0,0), a);
Complex.h 49 template<> EIGEN_STRONG_INLINE Packet2cf psub<Packet2cf>(const Packet2cf& a, const Packet2cf& b) { return Packet2cf(_mm_sub_ps(a.v,b.v)); } function in namespace:Eigen::internal
269 template<> EIGEN_STRONG_INLINE Packet1cd psub<Packet1cd>(const Packet1cd& a, const Packet1cd& b) { return Packet1cd(_mm_sub_pd(a.v,b.v)); } function in namespace:Eigen::internal
  /external/eigen/Eigen/src/Geometry/arch/
Geometry_SSE.h 85 t2 = psub(pmul(a_zz, b_xy), pmul(a_xx, b_zw));
98 t1 = psub(pmul(a_ww, b_zw), pmul(a_yy, b_xy));
104 pstore(&res.z(), psub(t1, pxor(mask,preverse(t2))));
  /external/mksh/src/
misc.c 711 const unsigned char *prest, *psub, *pnext; local
766 for (psub = p; ; psub = pnext) {
767 pnext = pat_scan(psub, pe, true);
769 if (do_gmatch(s, srest, psub, pnext - 2) &&
793 for (psub = p; ; psub = pnext) {
794 pnext = pat_scan(psub, pe, true);
797 if (do_gmatch(s, srest, psub, pnext - 2) &&
814 for (psub = p; ; psub = pnext)
    [all...]
  /external/eigen/unsupported/Eigen/src/MoreVectorization/
MathFunctions.h 65 z1=psub(p4f_pi_over_2,z1);
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 341 pstore(py, psub(pcj.pmul(pc,yi),pmul(ps,xi)));
357 pstore (py, psub(pcj.pmul(pc,yi),pmul(ps,xi)));
358 pstore (py+PacketSize, psub(pcj.pmul(pc,yi1),pmul(ps,xi1)));
367 pstore (y+peelingEnd, psub(pcj.pmul(pc,yi),pmul(ps,xi)));
395 pstore(py, psub(pcj.pmul(pc,yi),pmul(ps,xi)));
  /external/eigen/Eigen/src/Core/arch/AltiVec/
PacketMath.h 170 template<> EIGEN_STRONG_INLINE Packet4f psub<Packet4f>(const Packet4f& a, const Packet4f& b) { return vec_sub(a,b); } function in namespace:Eigen::internal
171 template<> EIGEN_STRONG_INLINE Packet4i psub<Packet4i>(const Packet4i& a, const Packet4i& b) { return vec_sub(a,b); } function in namespace:Eigen::internal
173 template<> EIGEN_STRONG_INLINE Packet4f pnegate(const Packet4f& a) { return psub<Packet4f>(p4f_ZERO, a); }
174 template<> EIGEN_STRONG_INLINE Packet4i pnegate(const Packet4i& a) { return psub<Packet4i>(p4i_ZERO, a); }
Complex.h 69 template<> EIGEN_STRONG_INLINE Packet2cf psub<Packet2cf>(const Packet2cf& a, const Packet2cf& b) { return Packet2cf(vec_sub(a.v,b.v)); } function in namespace:Eigen::internal
  /external/eigen/Eigen/src/Core/arch/NEON/
Complex.h 60 template<> EIGEN_STRONG_INLINE Packet2cf psub<Packet2cf>(const Packet2cf& a, const Packet2cf& b) { return Packet2cf(psub<Packet4f>(a.v,b.v)); } function in namespace:Eigen::internal
PacketMath.h 112 template<> EIGEN_STRONG_INLINE Packet4f psub<Packet4f>(const Packet4f& a, const Packet4f& b) { return vsubq_f32(a,b); } function in namespace:Eigen::internal
113 template<> EIGEN_STRONG_INLINE Packet4i psub<Packet4i>(const Packet4i& a, const Packet4i& b) { return vsubq_s32(a,b); } function in namespace:Eigen::internal
  /external/eigen/Eigen/src/Core/
GenericPacketMath.h 100 psub(const Packet& a, function in namespace:Eigen::internal
Functors.h 192 { return internal::psub(a,b); }
    [all...]
  /external/eigen/test/
packetmath.cpp 152 CHECK_CWISE2(REF_SUB, internal::psub);
  /external/eigen/Eigen/src/Core/products/
GeneralBlockPanelKernel.h 414 tmp = psub(pconj(ResPacket(c.first)),tmp);
    [all...]

Completed in 1295 milliseconds