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

Lines Matching defs:result_type

17 //     typedef typename Engine::result_type result_type;
29 typedef UIntType result_type;
32 result_type x_;
39 static const result_type _Min = Min;
40 static const result_type _Max = Max;
43 static TEST_CONSTEXPR result_type min() {return Min;}
44 static TEST_CONSTEXPR result_type max() {return Max;}
46 explicit rand1(result_type sd = Min) : x_(sd)
54 result_type operator()()
56 result_type r = x_;
69 std::shuffle_order_engine<rand1<unsigned long, 0, 10>, 16>::result_type,
77 std::shuffle_order_engine<rand1<unsigned long long, 0, 10>, 16>::result_type,