Searched refs:max_exp (Results 1 – 14 of 14) sorted by relevance
/third_party/ltp/tools/sparse/sparse-src/ |
D | cgcc | 198 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/ |
D | ac3enc_template.c | 274 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()
|
D | wavpackenc.c | 114 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 …]
|
D | g723_1enc.c | 472 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/ |
D | extract_real.hpp | 35 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/ |
D | to_chars.hpp | 975 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/ |
D | real_impl.hpp | 68 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/ |
D | test_strtod.py | 27 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): argument 68 if e + q.bit_length() > max_exp:
|
D | test_long.py | 32 DBL_MAX_EXP = sys.float_info.max_exp 47 SHIFT_MAX = sys.float_info.max_exp - PRECISION
|
D | test_getargs2.py | 49 DBL_MAX_EXP = sys.float_info.max_exp
|
/third_party/boost/libs/multiprecision/doc/ |
D | numeric_limits_32_tables.qbk | 70 [[type][round][radix][digits][digits10][max_digits10][min_exp][min_exp10][max_exp][max_exp10][tiny]…
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 15315 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/ |
D | glossary.rst | 824 >>> sys.float_info.max_exp # named field access
|
/third_party/python/Doc/library/ |
D | sys.rst | 530 | :const:`max_exp` | DBL_MAX_EXP | maximum integer *e* such that ``radix**(e-1)`` is|
|