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

Lines Matching refs:x_

32     result_type x_;
46 explicit rand1(result_type sd = Min) : x_(sd)
48 if (x_ < Min)
49 x_ = Min;
50 if (x_ > Max)
51 x_ = Max;
56 result_type r = x_;
57 if (x_ < Max)
58 ++x_;
60 x_ = Min;