Searched defs:pstore (Results 1 - 9 of 9) sorted by relevance

/external/eigen/Eigen/src/Core/arch/SSE/
H A DComplex.h101 template<> EIGEN_STRONG_INLINE void pstore <std::complex<float> >(std::complex<float> * to, const Packet2cf& from) { EIGEN_DEBUG_ALIGNED_STORE pstore(&real_ref(*to), from.v); } function in namespace:Eigen::internal
308 template<> EIGEN_STRONG_INLINE void pstore <std::complex<double> >(std::complex<double> * to, const Packet1cd& from) { EIGEN_DEBUG_ALIGNED_STORE pstore((double*)to, from.v); } function in namespace:Eigen::internal
H A DPacketMath.h292 template<> EIGEN_STRONG_INLINE void pstore<float>(float* to, const Packet4f& from) { EIGEN_DEBUG_ALIGNED_STORE _mm_store_ps(to, from); } function in namespace:Eigen::internal
293 template<> EIGEN_STRONG_INLINE void pstore<double>(double* to, const Packet2d& from) { EIGEN_DEBUG_ALIGNED_STORE _mm_store_pd(to, from); } function in namespace:Eigen::internal
294 template<> EIGEN_STRONG_INLINE void pstore<int>(int* to, const Packet4i& from) { EIGEN_DEBUG_ALIGNED_STORE _mm_store_si128(reinterpret_cast<Packet4i*>(to), from); } function in namespace:Eigen::internal
308 pstore(to, vec4f_swizzle1(pa,0,0,0,0));
314 pstore(to, vec2d_swizzle1(pa,0,0));
474 pstore(aux, a);
491 // for GCC (eg., it does not like using std::min after the pstore !!)
493 pstore(aux, a);
512 // for GCC (eg., it does not like using std::min after the pstore !!)
514 pstore(au
[all...]
/external/eigen/Eigen/src/Core/arch/AltiVec/
H A DComplex.h105 template<> EIGEN_STRONG_INLINE void pstore <std::complex<float> >(std::complex<float> * to, const Packet2cf& from) { EIGEN_DEBUG_ALIGNED_STORE pstore((float*)to, from.v); } function in namespace:Eigen::internal
113 pstore((float *)&res, a.v);
H A DPacketMath.h298 template<> EIGEN_STRONG_INLINE void pstore<float>(float* to, const Packet4f& from) { EIGEN_DEBUG_ALIGNED_STORE vec_st(from, 0, to); } function in namespace:Eigen::internal
299 template<> EIGEN_STRONG_INLINE void pstore<int>(int* to, const Packet4i& from) { EIGEN_DEBUG_ALIGNED_STORE vec_st(from, 0, to); } function in namespace:Eigen::internal
436 pstore(aux, a);
/external/eigen/Eigen/src/Core/arch/NEON/
H A DComplex.h113 template<> EIGEN_STRONG_INLINE void pstore <std::complex<float> >(std::complex<float> * to, const Packet2cf& from) { EIGEN_DEBUG_ALIGNED_STORE pstore((float*)to, from.v); } function in namespace:Eigen::internal
H A DPacketMath.h203 template<> EIGEN_STRONG_INLINE void pstore<float>(float* to, const Packet4f& from) { EIGEN_DEBUG_ALIGNED_STORE vst1q_f32(to, from); } function in namespace:Eigen::internal
204 template<> EIGEN_STRONG_INLINE void pstore<int>(int* to, const Packet4i& from) { EIGEN_DEBUG_ALIGNED_STORE vst1q_s32(to, from); } function in namespace:Eigen::internal
/external/chromium/chrome/browser/importer/
H A Die_importer.cc9 #include <pstore.h>
226 base::win::ScopedComPtr<IPStore, &IID_IPStore> pstore; local
227 HRESULT result = PStoreCreateInstance(pstore.Receive(), 0, 0, 0);
237 result = pstore->EnumItems(0, &AutocompleteGUID,
240 pstore.Release();
249 result = pstore->ReadItem(0, &AutocompleteGUID, &AutocompleteGUID,
273 pstore.Release();
H A Dimporter_unittest.cc12 #include <pstore.h>
287 void ClearPStoreType(IPStore* pstore, const GUID* type, const GUID* subtype) { argument
289 HRESULT result = pstore->EnumItems(0, type, subtype, 0, item.Receive());
293 pstore->DeleteItem(0, type, subtype, item_name, NULL, 0);
297 pstore->DeleteSubtype(0, type, subtype, 0);
298 pstore->DeleteType(0, type, 0);
301 void WritePStore(IPStore* pstore, const GUID* type, const GUID* subtype) { argument
320 HRESULT res = pstore->WriteItem(0, type, subtype, items[i].name,
356 base::win::ScopedComPtr<IPStore> pstore;
366 res = PStoreCreateInstance(pstore
[all...]
/external/eigen/Eigen/src/Core/
H A DGenericPacketMath.h172 template<typename Scalar, typename Packet> inline void pstore(Scalar* to, const Packet& from) function in namespace:Eigen::internal
265 pstore(to, pset1<Packet>(a));
292 pstore(to, from);

Completed in 108 milliseconds