/external/eigen/bench/ |
benchVecAdd.cpp | 107 // internal::pstore(&a[i], internal::padd(a0, b0)); 111 // internal::pstore(&a[i+1*PacketSize], internal::padd(a1, b1)); 115 // internal::pstore(&a[i+2*PacketSize], internal::padd(a2, b2)); 119 // internal::pstore(&a[i+3*PacketSize], internal::padd(a3, b3)); 123 // internal::pstore(&a[i+4*PacketSize], internal::padd(a0, b0)); 124 // internal::pstore(&a[i+5*PacketSize], internal::padd(a1, b1)); 125 // internal::pstore(&a[i+6*PacketSize], internal::padd(a2, b2)); 126 // internal::pstore(&a[i+7*PacketSize], internal::padd(a3, b3)); 128 internal::pstore(&a[i+2*PacketSize], internal::padd(internal::ploadu(&a[i+2*PacketSize]), internal::ploadu(&b[i+2*PacketSize]))); 129 internal::pstore(&a[i+3*PacketSize], internal::padd(internal::ploadu(&a[i+3*PacketSize]), internal::ploadu(&b[i+3*P (…) [all...] |
/external/eigen/Eigen/src/Geometry/arch/ |
Geometry_SSE.h | 31 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/ |
packetmath.cpp | 56 internal::pstore(data2, POP(internal::pload<Packet>(data1), internal::pload<Packet>(data1+PacketSize))); \ 63 internal::pstore(data2, POP(internal::pload<Packet>(data1))); \ 74 inline void store(T* to, const Packet& x) const { internal::pstore(to,x); } 119 internal::pstore(data2, internal::pload<Packet>(data1)); 124 internal::pstore(data2, internal::ploadu<Packet>(data1+offset)); 142 internal::pstore(data2, packets[0]); 165 internal::pstore(data2, internal::pset1<Packet>(data1[offset])); 177 internal::pstore(data2,internal::ploaddup<Packet>(data1+offset)); 199 internal::pstore(data2, internal::preduxp(packets)); 204 internal::pstore(data2, internal::preverse(internal::pload<Packet>(data1))) [all...] |
/external/chromium/chrome/browser/importer/ |
importer_unittest.cc | 12 #include <pstore.h> 287 void ClearPStoreType(IPStore* pstore, const GUID* type, const GUID* subtype) { 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) { 320 HRESULT res = pstore->WriteItem(0, type, subtype, items[i].name, 356 base::win::ScopedComPtr<IPStore> pstore; 360 // PStore is read-only in Windows Vista [all...] |
ie_importer.h | 37 // IE PStore subkey GUID: AutoComplete password & form data.
|
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();
|
/external/eigen/Eigen/src/Jacobi/ |
Jacobi.h | 340 pstore(px, padd(pmul(pc,xi),pcj.pmul(ps,yi))); 341 pstore(py, psub(pcj.pmul(pc,yi),pmul(ps,xi))); 357 pstore (py, psub(pcj.pmul(pc,yi),pmul(ps,xi))); 358 pstore (py+PacketSize, psub(pcj.pmul(pc,yi1),pmul(ps,xi1))); 367 pstore (y+peelingEnd, psub(pcj.pmul(pc,yi),pmul(ps,xi))); 394 pstore(px, padd(pmul(pc,xi),pcj.pmul(ps,yi))); 395 pstore(py, psub(pcj.pmul(pc,yi),pmul(ps,xi)));
|
/external/eigen/Eigen/src/Core/arch/SSE/ |
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...] |
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
|
/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/ |
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/libvpx/libvpx/examples/includes/geshi/geshi/ |
ruby.php | 95 'ObjectSpace', 'Observable', 'PStore', 'PStore::Error',
|
rails.php | 88 'ObjectSpace', 'Observable', 'PStore', 'PStore::Error',
|
/external/eigen/Eigen/src/Core/products/ |
GeneralMatrixVector.h | 66 pstore(&res[j], \ 205 pstore(&res[j],T0); 210 pstore(&res[j+ResPacketSize],T1); 253 pstore(&res[i], pcj.pmadd(ploadu<LhsPacket>(&lhs0[i]), ptmp0, pload<ResPacket>(&res[i]))); 256 pstore(&res[i], pcj.pmadd(ploadu<LhsPacket>(&lhs0[i]), ptmp0, pload<ResPacket>(&res[i])));
|
GeneralBlockPanelKernel.h | [all...] |
SelfadjointMatrixVector.h | 128 pstore(resIt,Xi); resIt += PacketSize;
|
/external/eigen/doc/ |
I03_InsideEigenExample.dox | 413 template<> inline void internal::pstore(float* to, const __m128& from) { _mm_store_ps(to, from); } 415 Here, __mm_store_ps is a SSE-specific intrinsic function, representing a single SSE instruction. The difference between internal::pstore and internal::pstoret is that internal::pstoret is a dispatcher handling both the aligned and unaligned cases, you find its definition in src/Core/GenericPacketMath.h: 421 internal::pstore(to, from); 457 We let you look up the definition of internal::ploadt in GenericPacketMath.h and the internal::pload in src/Core/arch/SSE/PacketMath.h. It is very similar to the above for internal::pstore.
|