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

  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 76 x = psub(x, p4f_1);
77 e = psub(e, _mm_and_ps(p4f_1, mask));
97 x = psub(x, tmp);
146 fx = psub(tmp, mask);
151 x = psub(x, tmp);
152 x = psub(x, z);
214 fx = psub(tmp, mask);
219 x = psub(x, tmp);
220 x = psub(x, z);
234 x = pdiv(px,psub(qx,px))
    [all...]
PacketMath.h 126 template<> EIGEN_STRONG_INLINE Packet4f psub<Packet4f>(const Packet4f& a, const Packet4f& b) { return _mm_sub_ps(a,b); } function in namespace:Eigen::internal
127 template<> EIGEN_STRONG_INLINE Packet2d psub<Packet2d>(const Packet2d& a, const Packet2d& b) { return _mm_sub_pd(a,b); } function in namespace:Eigen::internal
128 template<> EIGEN_STRONG_INLINE Packet4i psub<Packet4i>(const Packet4i& a, const Packet4i& b) { return _mm_sub_epi32(a,b); } function in namespace:Eigen::internal
142 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
275 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/pdfium/core/src/fpdfdoc/
doc_annot.cpp 193 CPDF_Object* psub = pAP->GetElementValue(ap_entry); local
194 if (psub == NULL) {
198 if (psub->GetType() == PDFOBJ_STREAM) {
199 pStream = (CPDF_Stream*)psub;
200 } else if (psub->GetType() == PDFOBJ_DICTIONARY) {
207 if (value.IsEmpty() || !((CPDF_Dictionary*)psub)->KeyExist(value)) {
213 pStream = ((CPDF_Dictionary*)psub)->GetStream(as);
  /external/mksh/src/
misc.c 773 const unsigned char *prest, *psub, *pnext; local
828 for (psub = p; ; psub = pnext) {
829 pnext = pat_scan(psub, pe, true);
831 if (do_gmatch(s, srest, psub, pnext - 2) &&
855 for (psub = p; ; psub = pnext) {
856 pnext = pat_scan(psub, pe, true);
859 if (do_gmatch(s, srest, psub, pnext - 2) &&
876 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 354 pstore(py, psub(pcj.pmul(pc,yi),pmul(ps,xi)));
370 pstore (py, psub(pcj.pmul(pc,yi),pmul(ps,xi)));
371 pstore (py+PacketSize, psub(pcj.pmul(pc,yi1),pmul(ps,xi1)));
380 pstore (y+peelingEnd, psub(pcj.pmul(pc,yi),pmul(ps,xi)));
408 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 193 { return internal::psub(a,b); }
    [all...]
  /external/eigen/test/
packetmath.cpp 152 CHECK_CWISE2(REF_SUB, internal::psub);
  /external/pdfium/fpdfsdk/src/
fsdk_baseform.cpp 57 CPDF_Object* psub = pAP->GetElementValue(ap_entry); local
58 if (psub == NULL) return FALSE;
68 return psub->GetType() == PDFOBJ_STREAM;
71 if (psub->GetType() == PDFOBJ_DICTIONARY)
73 CPDF_Dictionary* pSubDict = (CPDF_Dictionary*)psub;
    [all...]
  /external/eigen/Eigen/src/Core/products/
GeneralBlockPanelKernel.h 414 tmp = psub(pconj(ResPacket(c.first)),tmp);
    [all...]

Completed in 844 milliseconds