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

Lines Matching defs:result_type

17 //     typedef UIntType 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::independent_bits_engine<rand1<unsigned long, 0, 10>, 16, unsigned>::result_type,
77 std::independent_bits_engine<rand1<unsigned long, 0, 10>, 16, unsigned long long>::result_type,