/external/eigen/Eigen/src/Core/arch/AltiVec/ |
Complex.h | 105 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);
|
PacketMath.h | 298 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/SSE/ |
Complex.h | 101 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
|
PacketMath.h | 292 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(aux, a) [all...] |
/external/eigen/Eigen/src/Core/ |
GenericPacketMath.h | 172 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);
|
/external/eigen/Eigen/src/Core/arch/NEON/ |
Complex.h | 113 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
|
PacketMath.h | 203 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/ |
ie_importer.cc | 9 #include <pstore.h> 45 // A struct that hosts the information of AutoComplete data in PStore. 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();
|