Home
last modified time | relevance | path

Searched refs:check_overflow (Results 1 – 9 of 9) sorted by relevance

/third_party/boost/boost/math/policies/
Derror_handling.hpp701 inline bool check_overflow(T val, R* result, const char* function, const Policy& pol) BOOST_NOEXCEP… in check_overflow() function
713 inline bool check_overflow(std::complex<T> val, R* result, const char* function, const Policy& pol)… in check_overflow() function
717 bool r = check_overflow<r_type>(val.real(), &re, function, pol); in check_overflow()
718 r = check_overflow<r_type>(val.imag(), &im, function, pol) || r; in check_overflow()
766 inline BOOST_MATH_CONSTEXPR bool check_overflow(T /* val */, R* /* result */, const char* /* functi… in check_overflow() function
769 inline BOOST_MATH_CONSTEXPR bool check_overflow(std::complex<T> /* val */, R* /* result */, const c… in check_overflow() function
796 if(detail::check_overflow<R>(val, &result, function, overflow_type())) in checked_narrowing_cast()
/third_party/boost/boost/spirit/home/support/
Dnumeric_traits.hpp119 struct check_overflow : mpl::bool_<std::numeric_limits<T>::is_bounded> {}; struct
/third_party/boost/boost/spirit/home/x3/support/traits/
Dnumeric_traits.hpp116 struct check_overflow : mpl::bool_<std::numeric_limits<T>::is_bounded> {}; struct
/third_party/boost/boost/spirit/home/x3/support/numeric_utils/detail/
Dextract_int.hpp246 && traits::check_overflow<T>::value in call()
/third_party/boost/boost/spirit/home/qi/numeric/detail/
Dnumeric_utils.hpp250 && traits::check_overflow<T>::value in call()
/third_party/python/Lib/test/
Dtest_array.py1265 def check_overflow(self, lower, upper): member in NumberTest
1336 self.check_overflow(lower, upper)
1337 self.check_overflow(Intable(lower), Intable(upper))
1349 self.check_overflow(lower, upper)
1350 self.check_overflow(Intable(lower), Intable(upper))
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dlexer.cc370 const bool check_overflow = integer_part || set; in try_hex_float() local
373 if (check_overflow && (mantissa_next_bit > kTotalMsb)) { in try_hex_float()
/third_party/boost/libs/spirit/doc/x3/
Dchangelog.qbk75 *[/^] [*Note:] The `check_overflow` trait default implementation now relies on
/third_party/boost/libs/spirit/doc/
Dwhat_s_new.qbk58 * The `check_overflow` trait default implementation now relies on
61 *[/^] [*Note:] The `check_overflow` trait default implementation now relies on