Home | History | Annotate | Download | only in rand.adapt.shuf

Lines Matching refs:result_type

17 //     typedef typename Engine::result_type result_type;
27 typedef UIntType result_type;
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()()
54 result_type r = x_;
67 std::shuffle_order_engine<rand1<unsigned long, 0, 10>, 16>::result_type,
75 std::shuffle_order_engine<rand1<unsigned long long, 0, 10>, 16>::result_type,