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

/external/eigen/Eigen/src/Core/arch/SSE/
H A DComplex.h107 template<> EIGEN_STRONG_INLINE void pstore <std::complex<float> >(std::complex<float> * to, const Packet2cf& from) { EIGEN_DEBUG_ALIGNED_STORE pstore(&numext::real_ref(*to), from.v); } function in namespace:Eigen::internal
314 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.h309 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
310 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
311 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
325 pstore(to, vec4f_swizzle1(pa,0,0,0,0));
331 pstore(to, vec2d_swizzle1(pa,0,0));
491 pstore(aux, a);
508 // for GCC (eg., it does not like using std::min after the pstore !!)
510 pstore(aux, a);
529 // for GCC (eg., it does not like using std::min after the pstore !!)
531 pstore(au
[all...]
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dssl_cert.c1155 X509_STORE **pstore; local
1157 pstore = &c->chain_store;
1159 pstore = &c->verify_store;
1160 if (*pstore)
1161 X509_STORE_free(*pstore);
1162 *pstore = store;
/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.h301 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
302 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
439 pstore(aux, a);
/external/eigen/Eigen/src/Core/arch/NEON/
H A DComplex.h110 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.h206 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
207 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/eigen/Eigen/src/Core/
H A DGenericPacketMath.h176 template<typename Scalar, typename Packet> inline void pstore(Scalar* to, const Packet& from) function in namespace:Eigen::internal
274 pstore(to, pset1<Packet>(a));
301 pstore(to, from);
/external/chromium_org/chrome/utility/importer/
H A Die_importer_win.cc551 base::win::ScopedComPtr<IPStore, &IID_IPStore> pstore; local
552 HRESULT result = PStoreCreateInstance(pstore.Receive(), 0, 0, 0);
562 result = pstore->EnumItems(0, &AutocompleteGUID,
565 pstore.Release();
574 result = pstore->ReadItem(0, &AutocompleteGUID, &AutocompleteGUID,
598 pstore.Release();
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_input.c4186 struct sctp_paramhdr pstore; local
4235 ph = (struct sctp_paramhdr *)sctp_m_getptr(m, offset, sizeof(pstore), (uint8_t *)&pstore);

Completed in 1023 milliseconds