Searched refs:check_overflow (Results 1 – 9 of 9) sorted by relevance
/third_party/boost/boost/math/policies/ |
D | error_handling.hpp | 701 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/ |
D | numeric_traits.hpp | 119 struct check_overflow : mpl::bool_<std::numeric_limits<T>::is_bounded> {}; struct
|
/third_party/boost/boost/spirit/home/x3/support/traits/ |
D | numeric_traits.hpp | 116 struct check_overflow : mpl::bool_<std::numeric_limits<T>::is_bounded> {}; struct
|
/third_party/boost/boost/spirit/home/x3/support/numeric_utils/detail/ |
D | extract_int.hpp | 246 && traits::check_overflow<T>::value in call()
|
/third_party/boost/boost/spirit/home/qi/numeric/detail/ |
D | numeric_utils.hpp | 250 && traits::check_overflow<T>::value in call()
|
/third_party/python/Lib/test/ |
D | test_array.py | 1265 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/ |
D | lexer.cc | 370 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/ |
D | changelog.qbk | 75 *[/^] [*Note:] The `check_overflow` trait default implementation now relies on
|
/third_party/boost/libs/spirit/doc/ |
D | what_s_new.qbk | 58 * The `check_overflow` trait default implementation now relies on 61 *[/^] [*Note:] The `check_overflow` trait default implementation now relies on
|