Home
last modified time | relevance | path

Searched refs:max_exp (Results 1 – 14 of 14) sorted by relevance

/third_party/ltp/tools/sparse/sparse-src/
Dcgcc198 my $max_exp = 1 << ($exp_bits - 1);
199 my $min_exp = 3 - $max_exp;
200 my $max_10_exp = int ($max_exp * log (2) / log (10));
206 $result .= " -D__${name}_MAX_EXP__=$max_exp";
/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()
284 max_exp = FFMAX(exp, max_exp); in apply_channel_coupling()
286 master_exp = ((max_exp - 15) + 2) / 3; in apply_channel_coupling()
Dwavpackenc.c114 uint8_t float_flags, float_shift, float_max_exp, max_exp; member
232 shift_count = s->max_exp - get_exponent(f); in process_float()
235 shift_count = s->max_exp ? s->max_exp - 1 : 0; in process_float()
274 s->max_exp = 0; in scan_float()
281 if (get_exponent(f) > s->max_exp && get_exponent(f) < 255) in scan_float()
282 s->max_exp = get_exponent(f); in scan_float()
290 if (get_exponent(f) > s->max_exp && get_exponent(f) < 255) in scan_float()
291 s->max_exp = get_exponent(f); in scan_float()
296 if (get_exponent(f) > s->max_exp && get_exponent(f) < 255) in scan_float()
297 s->max_exp = get_exponent(f); in scan_float()
[all …]
Dg723_1enc.c472 int max_exp = 32; in estimate_pitch() local
512 if (exp > max_exp) in estimate_pitch()
515 if (exp + 1 < max_exp) in estimate_pitch()
519 if (exp + 1 == max_exp) in estimate_pitch()
528 max_exp = exp; in estimate_pitch()
/third_party/boost/boost/spirit/home/x3/support/numeric_utils/
Dextract_real.hpp35 constexpr auto max_exp = std::numeric_limits<T>::max_exponent10; in scale() local
42 if (is_floating_point<T>() && exp > max_exp) in scale()
/third_party/json/include/nlohmann/detail/conversions/
Dto_chars.hpp975 int min_exp, int max_exp) in format_buffer() argument
978 JSON_ASSERT(max_exp > 0); in format_buffer()
987 if (k <= n && n <= max_exp) in format_buffer()
999 if (0 < n && n <= max_exp) in format_buffer()
/third_party/boost/boost/spirit/home/qi/numeric/detail/
Dreal_impl.hpp68 int const max_exp = std::numeric_limits<T>::max_exponent10; in scale() local
72 if (is_floating_point<T>() && (exp > max_exp)) in scale()
/third_party/python/Lib/test/
Dtest_strtod.py27 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): argument
68 if e + q.bit_length() > max_exp:
Dtest_long.py32 DBL_MAX_EXP = sys.float_info.max_exp
47 SHIFT_MAX = sys.float_info.max_exp - PRECISION
Dtest_getargs2.py49 DBL_MAX_EXP = sys.float_info.max_exp
/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/json/single_include/nlohmann/
Djson.hpp15315 int min_exp, int max_exp) in format_buffer() argument
15318 JSON_ASSERT(max_exp > 0); in format_buffer()
15327 if (k <= n && n <= max_exp) in format_buffer()
15339 if (0 < n && n <= max_exp) in format_buffer()
/third_party/python/Doc/
Dglossary.rst824 >>> sys.float_info.max_exp # named field access
/third_party/python/Doc/library/
Dsys.rst530 | :const:`max_exp` | DBL_MAX_EXP | maximum integer *e* such that ``radix**(e-1)`` is|