Searched defs:pset1 (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/sandbox/win/src/
H A Dpolicy_opcodes_unittest.cc41 ParameterSet pset1 = ParamPickerMake(pv1); local
47 EXPECT_TRUE(pset1.Get(&result1));
49 EXPECT_FALSE(pset1.Get(&result2));
/external/eigen/Eigen/src/Core/arch/SSE/
H A DComplex.h87 template<> EIGEN_STRONG_INLINE Packet2cf pset1<Packet2cf>(const std::complex<float>& from) function in namespace:Eigen::internal
105 template<> EIGEN_STRONG_INLINE Packet2cf ploaddup<Packet2cf>(const std::complex<float>* from) { return pset1<Packet2cf>(*from); }
308 template<> EIGEN_STRONG_INLINE Packet1cd pset1<Packet1cd>(const std::complex<double>& from) function in namespace:Eigen::internal
311 template<> EIGEN_STRONG_INLINE Packet1cd ploaddup<Packet1cd>(const std::complex<double>* from) { return pset1<Packet1cd>(*from); }
H A DPacketMath.h49 const Packet4f p4f_##NAME = pset1<Packet4f>(X)
52 const Packet2d p2d_##NAME = pset1<Packet2d>(X)
55 const Packet4f p4f_##NAME = _mm_castsi128_ps(pset1<Packet4i>(X))
58 const Packet4i p4i_##NAME = pset1<Packet4i>(X)
108 // TODO: let's check whether there does not exist a better fix, like adding a pset0() function. (it crashed on pset1(0)).
109 template<> EIGEN_STRONG_INLINE Packet4f pset1<Packet4f>(const float& from) { return _mm_set_ps(from,from,from,from); } function in namespace:Eigen::internal
110 template<> EIGEN_STRONG_INLINE Packet2d pset1<Packet2d>(const double& from) { return _mm_set_pd(from,from); } function in namespace:Eigen::internal
111 template<> EIGEN_STRONG_INLINE Packet4i pset1<Packet4i>(const int& from) { return _mm_set_epi32(from,from,from,from); } function in namespace:Eigen::internal
113 template<> EIGEN_STRONG_INLINE Packet4f pset1<Packet4f>(const float& from) { return _mm_set1_ps(from); } function in namespace:Eigen::internal
114 template<> EIGEN_STRONG_INLINE Packet2d pset1<Packet2 function in namespace:Eigen::internal
115 template<> EIGEN_STRONG_INLINE Packet4i pset1<Packet4i>(const int& from) { return _mm_set1_epi32(from); } function in namespace:Eigen::internal
[all...]
/external/eigen/Eigen/src/Core/arch/AltiVec/
H A DComplex.h56 template<> EIGEN_STRONG_INLINE Packet2cf pset1<Packet2cf>(const std::complex<float>& from) function in namespace:Eigen::internal
102 return pset1<Packet2cf>(*from);
H A DPacketMath.h47 Packet4f p4f_##NAME = pset1<Packet4f>(X)
50 Packet4f p4f_##NAME = vreinterpretq_f32_u32(pset1<int>(X))
53 Packet4i p4i_##NAME = pset1<Packet4i>(X)
147 template<> EIGEN_STRONG_INLINE Packet4f pset1<Packet4f>(const float& from) { function in namespace:Eigen::internal
156 template<> EIGEN_STRONG_INLINE Packet4i pset1<Packet4i>(const int& from) { function in namespace:Eigen::internal
164 template<> EIGEN_STRONG_INLINE Packet4f plset<float>(const float& a) { return vec_add(pset1<Packet4f>(a), p4f_COUNTDOWN); }
165 template<> EIGEN_STRONG_INLINE Packet4i plset<int>(const int& a) { return vec_add(pset1<Packet4i>(a), p4i_COUNTDOWN); }
233 return pset1<Packet4i>(0);
/external/eigen/Eigen/src/Core/arch/NEON/
H A DComplex.h51 template<> EIGEN_STRONG_INLINE Packet2cf pset1<Packet2cf>(const std::complex<float>& from) function in namespace:Eigen::internal
108 template<> EIGEN_STRONG_INLINE Packet2cf ploaddup<Packet2cf>(const std::complex<float>* from) { return pset1<Packet2cf>(*from); }
H A DPacketMath.h34 const Packet4f p4f_##NAME = pset1<Packet4f>(X)
37 const Packet4f p4f_##NAME = vreinterpretq_f32_u32(pset1<int>(X))
40 const Packet4i p4i_##NAME = pset1<Packet4i>(X)
95 template<> EIGEN_STRONG_INLINE Packet4f pset1<Packet4f>(const float& from) { return vdupq_n_f32(from); } function in namespace:Eigen::internal
96 template<> EIGEN_STRONG_INLINE Packet4i pset1<Packet4i>(const int& from) { return vdupq_n_s32(from); } function in namespace:Eigen::internal
101 return vaddq_f32(pset1<Packet4f>(a), countdown);
106 return vaddq_s32(pset1<Packet4i>(a), countdown);
147 return pset1<Packet4i>(0);
/external/eigen/Eigen/src/Core/
H A DGenericPacketMath.h169 pset1(const typename unpacket_traits<Packet>::type& a) { return a; } function in namespace:Eigen::internal
274 pstore(to, pset1<Packet>(a));

Completed in 132 milliseconds