Lines Matching refs:_Max

1847     static _LIBCPP_CONSTEXPR const result_type _Max = __m - 1u;
1848 static_assert(_Min < _Max, "linear_congruential_engine invalid parameters");
1857 static _LIBCPP_CONSTEXPR result_type max() {return _Max;}
2078 static _LIBCPP_CONSTEXPR const result_type _Max = __w == _Dt ? result_type(~0) :
2080 static_assert(_Min < _Max, "mersenne_twister_engine invalid parameters");
2081 static_assert(__a <= _Max, "mersenne_twister_engine invalid parameters");
2082 static_assert(__b <= _Max, "mersenne_twister_engine invalid parameters");
2083 static_assert(__c <= _Max, "mersenne_twister_engine invalid parameters");
2084 static_assert(__d <= _Max, "mersenne_twister_engine invalid parameters");
2085 static_assert(__f <= _Max, "mersenne_twister_engine invalid parameters");
2104 static _LIBCPP_CONSTEXPR result_type max() { return _Max; }
2186 __lshift(result_type __x) {return (__x << __count) & _Max;}
2310 __x_[0] = __sd & _Max;
2312 __x_[__i] = (__f * (__x_[__i-1] ^ __rshift<__w - 2>(__x_[__i-1])) + __i) & _Max;
2328 __x_[__i] = static_cast<result_type>(__ar[__i] & _Max);
2337 __x_[0] = _Max;
2354 (__ar[2 * __i] + ((uint64_t)__ar[2 * __i + 1] << 32)) & _Max);
2363 __x_[0] = _Max;
2548 static _LIBCPP_CONSTEXPR const result_type _Max = __w == _Dt ? result_type(~0) :
2550 static_assert(_Min < _Max, "subtract_with_carry_engine invalid parameters");
2559 static _LIBCPP_CONSTEXPR result_type max() { return _Max; }
2648 __x_[__i] = static_cast<result_type>(__e() & _Max);
2664 (__e0 + ((uint64_t)__e() << 32)) & _Max);
2680 __x_[__i] = static_cast<result_type>(__ar[__i] & _Max);
2696 (__ar[2 * __i] + ((uint64_t)__ar[2 * __i + 1] << 32)) & _Max);
2708 __xr = (__xs - __xr - __c_) & _Max;
2830 static const result_type _Max = _Engine::_Max;
2833 static _LIBCPP_CONSTEXPR const result_type _Max = _Engine::max();
3017 static const _Working_result_type _Rp = _Engine::_Max - _Engine::_Min
3041 static _LIBCPP_CONSTEXPR const result_type _Max = __w == _Dt ? result_type(~0) :
3043 static_assert(_Min < _Max, "independent_bits_engine invalid parameters");
3049 static _LIBCPP_CONSTEXPR result_type max() { return _Max; }
3267 static const result_type _Max = _Engine::_Max;
3270 static _LIBCPP_CONSTEXPR const result_type _Max = _Engine::max();
3272 static_assert(_Min < _Max, "shuffle_order_engine invalid parameters");
3276 static _LIBCPP_CONSTEXPR result_type max() { return _Max; }
3278 static _LIBCPP_CONSTEXPR const unsigned long long _Rp = _Max - _Min + 1ull;
3373 (__uratio<_Np, _Dp>::num > 0xFFFFFFFFFFFFFFFFull / (_Max - _Min)),
3383 __uratio<_Np, _Dp>::num <= 0xFFFFFFFFFFFFFFFFull / (_Max - _Min),
3487 static _LIBCPP_CONSTEXPR const result_type _Max = 0xFFFFFFFFu;
3492 static _LIBCPP_CONSTEXPR result_type max() { return _Max;}
3639 const size_t __logR = __log2<uint64_t, _URNG::_Max - _URNG::_Min + uint64_t(1)>::value;