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

Lines Matching defs:x_

30     result_type x_;
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
48 if (x_ > Max)
49 x_ = Max;
54 result_type r = x_;
55 if (x_ < Max)
56 ++x_;
58 x_ = Min;