Home
last modified time | relevance | path

Searched refs:pstore (Results 1 – 17 of 17) sorted by relevance

/external/eigen/Eigen/src/Geometry/arch/
DGeometry_SSE.h31 pstore(&res.x(),
51 pstore(&res.x(),_mm_sub_ps(mul1,mul2));
88 pstore(&res.x(), _mm_addsub_pd(t1, preverse(t2)));
90 pstore(&res.x(), padd(t1, pxor(mask,preverse(t2))));
102 pstore(&res.z(), preverse(_mm_addsub_pd(preverse(t1), t2)));
104 pstore(&res.z(), psub(t1, pxor(mask,preverse(t2))));
/external/eigen/test/
Dpacketmath.cpp56 …internal::pstore(data2, POP(internal::pload<Packet>(data1), internal::pload<Packet>(data1+PacketSi…
63 internal::pstore(data2, POP(internal::pload<Packet>(data1))); \
74 inline void store(T* to, const Packet& x) const { internal::pstore(to,x); } in store()
119 internal::pstore(data2, internal::pload<Packet>(data1)); in packetmath()
124 internal::pstore(data2, internal::ploadu<Packet>(data1+offset)); in packetmath()
142 internal::pstore(data2, packets[0]); in packetmath()
165 internal::pstore(data2, internal::pset1<Packet>(data1[offset])); in packetmath()
177 internal::pstore(data2,internal::ploaddup<Packet>(data1+offset)); in packetmath()
199 internal::pstore(data2, internal::preduxp(packets)); in packetmath()
204 internal::pstore(data2, internal::preverse(internal::pload<Packet>(data1))); in packetmath()
[all …]
/external/eigen/bench/
DbenchVecAdd.cpp128 …internal::pstore(&a[i+2*PacketSize], internal::padd(internal::ploadu(&a[i+2*PacketSize]), internal… in benchVec()
129 …internal::pstore(&a[i+3*PacketSize], internal::padd(internal::ploadu(&a[i+3*PacketSize]), internal… in benchVec()
130 …internal::pstore(&a[i+4*PacketSize], internal::padd(internal::ploadu(&a[i+4*PacketSize]), internal… in benchVec()
131 …internal::pstore(&a[i+5*PacketSize], internal::padd(internal::ploadu(&a[i+5*PacketSize]), internal… in benchVec()
132 …internal::pstore(&a[i+6*PacketSize], internal::padd(internal::ploadu(&a[i+6*PacketSize]), internal… in benchVec()
133 …internal::pstore(&a[i+7*PacketSize], internal::padd(internal::ploadu(&a[i+7*PacketSize]), internal… in benchVec()
/external/chromium/chrome/browser/importer/
Dimporter_unittest.cc287 void ClearPStoreType(IPStore* pstore, const GUID* type, const GUID* subtype) { in ClearPStoreType() argument
289 HRESULT result = pstore->EnumItems(0, type, subtype, 0, item.Receive()); in ClearPStoreType()
293 pstore->DeleteItem(0, type, subtype, item_name, NULL, 0); in ClearPStoreType()
297 pstore->DeleteSubtype(0, type, subtype, 0); in ClearPStoreType()
298 pstore->DeleteType(0, type, 0); in ClearPStoreType()
301 void WritePStore(IPStore* pstore, const GUID* type, const GUID* subtype) { in WritePStore() argument
320 HRESULT res = pstore->WriteItem(0, type, subtype, items[i].name, in WritePStore()
356 base::win::ScopedComPtr<IPStore> pstore; in TEST_F()
366 res = PStoreCreateInstance(pstore.Receive(), 0, 0, 0); in TEST_F()
368 ClearPStoreType(pstore, &type, &subtype); in TEST_F()
[all …]
Die_importer.cc226 base::win::ScopedComPtr<IPStore, &IID_IPStore> pstore; in ImportPasswordsIE6() local
227 HRESULT result = PStoreCreateInstance(pstore.Receive(), 0, 0, 0); in ImportPasswordsIE6()
237 result = pstore->EnumItems(0, &AutocompleteGUID, in ImportPasswordsIE6()
240 pstore.Release(); in ImportPasswordsIE6()
249 result = pstore->ReadItem(0, &AutocompleteGUID, &AutocompleteGUID, in ImportPasswordsIE6()
273 pstore.Release(); in ImportPasswordsIE6()
/external/eigen/Eigen/src/Jacobi/
DJacobi.h340 pstore(px, padd(pmul(pc,xi),pcj.pmul(ps,yi))); in apply_rotation_in_the_plane()
341 pstore(py, psub(pcj.pmul(pc,yi),pmul(ps,xi))); in apply_rotation_in_the_plane()
357 pstore (py, psub(pcj.pmul(pc,yi),pmul(ps,xi))); in apply_rotation_in_the_plane()
358 pstore (py+PacketSize, psub(pcj.pmul(pc,yi1),pmul(ps,xi1))); in apply_rotation_in_the_plane()
367 pstore (y+peelingEnd, psub(pcj.pmul(pc,yi),pmul(ps,xi))); in apply_rotation_in_the_plane()
394 pstore(px, padd(pmul(pc,xi),pcj.pmul(ps,yi))); in apply_rotation_in_the_plane()
395 pstore(py, psub(pcj.pmul(pc,yi),pmul(ps,xi))); in apply_rotation_in_the_plane()
/external/eigen/Eigen/src/Core/arch/SSE/
DPacketMath.h292 template<> EIGEN_STRONG_INLINE void pstore<float>(float* to, const Packet4f& from) { EIGEN_DEBUG_…
293 template<> EIGEN_STRONG_INLINE void pstore<double>(double* to, const Packet2d& from) { EIGEN_DEBUG_…
294 template<> EIGEN_STRONG_INLINE void pstore<int>(int* to, const Packet4i& from) { EIGEN_DEBUG_…
308 pstore(to, vec4f_swizzle1(pa,0,0,0,0));
314 pstore(to, vec2d_swizzle1(pa,0,0));
474 pstore(aux, a);
493 pstore(aux, a);
514 pstore(aux, a);
DComplex.h101 …STRONG_INLINE void pstore <std::complex<float> >(std::complex<float> * to, const Packet2cf& from…
308 …TRONG_INLINE void pstore <std::complex<double> >(std::complex<double> * to, const Packet1cd& fro…
/external/eigen/Eigen/src/Core/
DGenericPacketMath.h172 template<typename Scalar, typename Packet> inline void pstore(Scalar* to, const Packet& from) in pstore() function
265 pstore(to, pset1<Packet>(a)); in pstore1()
292 pstore(to, from); in pstoret()
/external/eigen/Eigen/src/Core/arch/AltiVec/
DComplex.h105 …STRONG_INLINE void pstore <std::complex<float> >(std::complex<float> * to, const Packet2cf& from…
113 pstore((float *)&res, a.v);
DPacketMath.h298 template<> EIGEN_STRONG_INLINE void pstore<float>(float* to, const Packet4f& from) { EIGEN_DEBUG_…
299 template<> EIGEN_STRONG_INLINE void pstore<int>(int* to, const Packet4i& from) { EIGEN_DEBUG_…
436 pstore(aux, a);
/external/eigen/Eigen/src/Core/products/
DGeneralMatrixVector.h66 pstore(&res[j], \
205 pstore(&res[j],T0);
210 pstore(&res[j+ResPacketSize],T1);
253pstore(&res[i], pcj.pmadd(ploadu<LhsPacket>(&lhs0[i]), ptmp0, pload<ResPacket>(&res[i])));
256pstore(&res[i], pcj.pmadd(ploadu<LhsPacket>(&lhs0[i]), ptmp0, pload<ResPacket>(&res[i])));
DSelfadjointMatrixVector.h128 pstore(resIt,Xi); resIt += PacketSize; in run()
DGeneralBlockPanelKernel.h1139 if(Pack1>=1*PacketSize) { pstore(blockA+count, cj.pconj(A)); count+=PacketSize; }
1140 if(Pack1>=2*PacketSize) { pstore(blockA+count, cj.pconj(B)); count+=PacketSize; }
1141 if(Pack1>=3*PacketSize) { pstore(blockA+count, cj.pconj(C)); count+=PacketSize; }
1142 if(Pack1>=4*PacketSize) { pstore(blockA+count, cj.pconj(D)); count+=PacketSize; }
/external/eigen/Eigen/src/Core/arch/NEON/
DComplex.h113 …STRONG_INLINE void pstore <std::complex<float> >(std::complex<float> * to, const Packet2cf& from…
DPacketMath.h203 template<> EIGEN_STRONG_INLINE void pstore<float>(float* to, const Packet4f& from) { EIGEN_DEBUG_…
204 template<> EIGEN_STRONG_INLINE void pstore<int>(int* to, const Packet4i& from) { EIGEN_DEBUG_…
/external/eigen/doc/
DI03_InsideEigenExample.dox413 template<> inline void internal::pstore(float* to, const __m128& from) { _mm_store_ps(to, from); }
415 … representing a single SSE instruction. The difference between internal::pstore and internal::psto…
421 internal::pstore(to, from);
457 …nal::pload in src/Core/arch/SSE/PacketMath.h. It is very similar to the above for internal::pstore.