HomeSort by relevance Sort by last modified time
    Searched full:result_type (Results 1 - 25 of 849) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/
eval.pass.cpp 15 // template<class _URNG> result_type operator()(_URNG& g);
38 std::vector<D::result_type> u;
41 D::result_type v = d(g);
45 D::result_type mean = std::accumulate(u.begin(), u.end(),
46 D::result_type(0)) / u.size();
47 D::result_type var = 0;
48 D::result_type skew = 0;
49 D::result_type kurtosis = 0;
52 D::result_type d = (u[i] - mean);
53 D::result_type d2 = sqr(d)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/
eval.pass.cpp 15 // template<class _URNG> result_type operator()(_URNG& g);
38 std::vector<D::result_type> u;
41 D::result_type v = d(g);
45 D::result_type mean = std::accumulate(u.begin(), u.end(),
46 D::result_type(0)) / u.size();
47 D::result_type var = 0;
48 D::result_type skew = 0;
49 D::result_type kurtosis = 0;
52 D::result_type d = (u[i] - mean);
53 D::result_type d2 = sqr(d)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
bind_template.hpp 15 typedef typename result_traits<R, F>::type result_type; typedef
17 result_type operator()()
20 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
23 result_type operator()() const
26 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
29 template<class A1> result_type operator()(A1 & a1)
32 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
35 template<class A1> result_type operator()(A1 & a1) const
38 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
44 template<class A1> result_type operator()(A1 const & a1
    [all...]
  /external/libcxx/include/
random 29 typedef UIntType result_type;
32 static constexpr result_type multiplier = a;
33 static constexpr result_type increment = c;
34 static constexpr result_type modulus = m;
35 static constexpr result_type min() { return c == 0u ? 1u: 0u;}
36 static constexpr result_type max() { return m - 1u;}
37 static constexpr result_type default_seed = 1u;
40 explicit linear_congruential_engine(result_type s = default_seed);
42 void seed(result_type s = default_seed);
46 result_type operator()()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
random 29 typedef UIntType result_type;
32 static constexpr result_type multiplier = a;
33 static constexpr result_type increment = c;
34 static constexpr result_type modulus = m;
35 static constexpr result_type min() { return c == 0u ? 1u: 0u;}
36 static constexpr result_type max() { return m - 1u;}
37 static constexpr result_type default_seed = 1u;
40 explicit linear_congruential_engine(result_type s = default_seed);
42 void seed(result_type s = default_seed);
46 result_type operator()()
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
random 29 typedef UIntType result_type;
32 static constexpr result_type multiplier = a;
33 static constexpr result_type increment = c;
34 static constexpr result_type modulus = m;
35 static constexpr result_type min() { return c == 0u ? 1u: 0u;}
36 static constexpr result_type max() { return m - 1u;}
37 static constexpr result_type default_seed = 1u;
40 explicit linear_congruential_engine(result_type s = default_seed);
42 void seed(result_type s = default_seed);
46 result_type operator()()
    [all...]
  /external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
result_type.pass.cpp 17 // typedef typename Engine::result_type result_type;
27 typedef UIntType result_type; typedef in class:rand1
30 result_type x_;
37 static const result_type _Min = Min;
38 static const result_type _Max = Max;
41 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
42 static _LIBCPP_CONSTEXPR result_type max() {return Max;}
44 explicit rand1(result_type sd = Min) : x_(sd)
52 result_type operator()(
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
result_type.pass.cpp 17 // typedef typename Engine::result_type result_type;
27 typedef UIntType result_type; typedef in class:rand1
30 result_type x_;
37 static const result_type _Min = Min;
38 static const result_type _Max = Max;
41 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
42 static _LIBCPP_CONSTEXPR result_type max() {return Max;}
44 explicit rand1(result_type sd = Min) : x_(sd)
52 result_type operator()(
    [all...]
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/
types.pass.cpp 15 // typedef bool result_type;
24 typedef D::result_type result_type; typedef
25 static_assert((std::is_same<result_type, int>::value), "");
29 typedef D::result_type result_type; typedef
30 static_assert((std::is_same<result_type, long>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/
types.pass.cpp 15 // typedef bool result_type;
24 typedef D::result_type result_type; typedef
25 static_assert((std::is_same<result_type, int>::value), "");
29 typedef D::result_type result_type; typedef
30 static_assert((std::is_same<result_type, long>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/
types.pass.cpp 15 // typedef bool result_type;
24 typedef D::result_type result_type; typedef
25 static_assert((std::is_same<result_type, int>::value), "");
29 typedef D::result_type result_type; typedef
30 static_assert((std::is_same<result_type, long>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/
types.pass.cpp 17 // typedef RealType result_type;
26 typedef D::result_type result_type; typedef
27 static_assert((std::is_same<result_type, double>::value), "");
31 typedef D::result_type result_type; typedef
32 static_assert((std::is_same<result_type, float>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/
types.pass.cpp 17 // typedef RealType result_type;
26 typedef D::result_type result_type; typedef
27 static_assert((std::is_same<result_type, double>::value), "");
31 typedef D::result_type result_type; typedef
32 static_assert((std::is_same<result_type, float>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/
types.pass.cpp 17 // typedef RealType result_type;
26 typedef D::result_type result_type; typedef
27 static_assert((std::is_same<result_type, double>::value), "");
31 typedef D::result_type result_type; typedef
32 static_assert((std::is_same<result_type, float>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/
types.pass.cpp 17 // typedef RealType result_type;
26 typedef D::result_type result_type; typedef
27 static_assert((std::is_same<result_type, double>::value), "");
31 typedef D::result_type result_type; typedef
32 static_assert((std::is_same<result_type, float>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/
types.pass.cpp 17 // typedef RealType result_type;
26 typedef D::result_type result_type; typedef
27 static_assert((std::is_same<result_type, double>::value), "");
31 typedef D::result_type result_type; typedef
32 static_assert((std::is_same<result_type, float>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/
types.pass.cpp 17 // typedef RealType result_type;
26 typedef D::result_type result_type; typedef
27 static_assert((std::is_same<result_type, double>::value), "");
31 typedef D::result_type result_type; typedef
32 static_assert((std::is_same<result_type, float>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/
types.pass.cpp 17 // typedef RealType result_type;
26 typedef D::result_type result_type; typedef
27 static_assert((std::is_same<result_type, double>::value), "");
31 typedef D::result_type result_type; typedef
32 static_assert((std::is_same<result_type, float>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/
types.pass.cpp 17 // typedef RealType result_type;
26 typedef D::result_type result_type; typedef
27 static_assert((std::is_same<result_type, double>::value), "");
31 typedef D::result_type result_type; typedef
32 static_assert((std::is_same<result_type, float>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/
types.pass.cpp 17 // typedef RealType result_type;
26 typedef D::result_type result_type; typedef
27 static_assert((std::is_same<result_type, double>::value), "");
31 typedef D::result_type result_type; typedef
32 static_assert((std::is_same<result_type, float>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/
types.pass.cpp 17 // typedef RealType result_type;
26 typedef D::result_type result_type; typedef
27 static_assert((std::is_same<result_type, int>::value), "");
31 typedef D::result_type result_type; typedef
32 static_assert((std::is_same<result_type, unsigned long long>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/
types.pass.cpp 17 // typedef RealType result_type;
26 typedef D::result_type result_type; typedef
27 static_assert((std::is_same<result_type, double>::value), "");
31 typedef D::result_type result_type; typedef
32 static_assert((std::is_same<result_type, float>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/
types.pass.cpp 15 // typedef bool result_type;
24 typedef D::result_type result_type; typedef
25 static_assert((std::is_same<result_type, int>::value), "");
29 typedef D::result_type result_type; typedef
30 static_assert((std::is_same<result_type, long>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
types.pass.cpp 15 // typedef bool result_type;
24 typedef D::result_type result_type; typedef
25 static_assert((std::is_same<result_type, double>::value), "");
29 typedef D::result_type result_type; typedef
30 static_assert((std::is_same<result_type, float>::value), "");
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
types.pass.cpp 15 // typedef bool result_type;
24 typedef D::result_type result_type; typedef
25 static_assert((std::is_same<result_type, double>::value), "");
29 typedef D::result_type result_type; typedef
30 static_assert((std::is_same<result_type, float>::value), "");

Completed in 736 milliseconds

1 2 3 4 5 6 7 8 91011>>