Home
last modified time | relevance | path

Searched refs:min_exp (Results 1 – 12 of 12) sorted by relevance

/third_party/boost/boost/spirit/home/x3/support/numeric_utils/
Dextract_real.hpp36 constexpr auto min_exp = std::numeric_limits<T>::min_exponent10; in scale() local
48 if (exp < min_exp) in scale()
50 n /= pow10<T>(-min_exp); in scale()
54 exp += -min_exp; in scale()
55 if (is_floating_point<T>() && exp < min_exp) in scale()
/third_party/boost/boost/spirit/home/qi/numeric/detail/
Dreal_impl.hpp80 int const min_exp = std::numeric_limits<T>::min_exponent10; in scale() local
82 n /= pow10<T>(-min_exp); in scale()
86 exp += -min_exp; in scale()
87 if (is_floating_point<T>() && exp < min_exp) in scale()
/third_party/ltp/tools/sparse/sparse-src/
Dcgcc199 my $min_exp = 3 - $max_exp;
201 my $min_10_exp = -int (-$min_exp * log (2) / log (10));
205 $result .= " -D__${name}_MIN_EXP__='($min_exp)'";
/third_party/python/Lib/test/
Dtest_strtod.py27 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): argument
52 e = max(d, min_exp) - mant_dig
64 assert q.bit_length() <= mant_dig and e >= min_exp - mant_dig
65 assert q.bit_length() == mant_dig or e == min_exp - mant_dig
Dtest_long.py33 DBL_MIN_EXP = sys.float_info.min_exp
Dtest_math.py609 etiny = float_info.min_exp - mant_dig
/third_party/ffmpeg/libavcodec/
Dac3enc_template.c274 int bnd, min_exp, max_exp, master_exp; in apply_channel_coupling() local
280 min_exp = max_exp = block->cpl_coord_exp[ch][0]; in apply_channel_coupling()
283 min_exp = FFMIN(exp, min_exp); in apply_channel_coupling()
288 while (min_exp < master_exp * 3) in apply_channel_coupling()
Dac3dsp.c37 uint8_t min_exp = *exp; in ac3_exponent_min_c() local
41 if (next_exp < min_exp) in ac3_exponent_min_c()
42 min_exp = next_exp; in ac3_exponent_min_c()
45 *exp++ = min_exp; in ac3_exponent_min_c()
/third_party/json/include/nlohmann/detail/conversions/
Dto_chars.hpp975 int min_exp, int max_exp) in format_buffer() argument
977 JSON_ASSERT(min_exp < 0); in format_buffer()
1011 if (min_exp < n && n <= 0) in format_buffer()
/third_party/boost/libs/multiprecision/doc/
Dnumeric_limits_32_tables.qbk70 [[type][round][radix][digits][digits10][max_digits10][min_exp][min_exp10][max_exp][max_exp10][tiny]…
/third_party/python/Doc/library/
Dsys.rst542 | :const:`min_exp` | DBL_MIN_EXP | minimum integer *e* such that ``radix**(e-1)`` is|
/third_party/json/single_include/nlohmann/
Djson.hpp15315 int min_exp, int max_exp) in format_buffer() argument
15317 JSON_ASSERT(min_exp < 0); in format_buffer()
15351 if (min_exp < n && n <= 0) in format_buffer()