Home
last modified time | relevance | path

Searched refs:max_exp (Results 1 - 12 of 12) sorted by relevance

/third_party/rust/crates/minimal-lexical/etc/
H A Dlemire_table.py41 max_exp = maximum_exponent(10)
47 print('pub const LARGEST_POWER_OF_FIVE: i32 = {};'.format(max_exp))
51 print_proper_powers(min_exp, max_exp, bias)
62 def print_proper_powers(min_exp, max_exp, bias):
86 for q in range(0, max_exp + 1):
H A Dbellerophon_table.py86 max_exp = math.ceil(math.log(1.7976931348623157e+308, base))
101 for exp in range(step, max_exp, step):
/third_party/ltp/tools/sparse/sparse-src/
H A 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/
H A Dac3enc_template.c275 int bnd, min_exp, max_exp, master_exp; in apply_channel_coupling() local
281 min_exp = max_exp = block->cpl_coord_exp[ch][0]; in apply_channel_coupling()
285 max_exp = FFMAX(exp, max_exp); in apply_channel_coupling()
287 master_exp = ((max_exp - 15) + 2) / 3; in apply_channel_coupling()
H A Dg723_1enc.c468 int max_exp = 32; in estimate_pitch() local
508 if (exp > max_exp) in estimate_pitch()
511 if (exp + 1 < max_exp) in estimate_pitch()
515 if (exp + 1 == max_exp) in estimate_pitch()
524 max_exp = exp; in estimate_pitch()
H A Dwavpackenc.c117 uint8_t float_flags, float_shift, float_max_exp, max_exp; member
235 shift_count = s->max_exp - get_exponent(f); in process_float()
238 shift_count = s->max_exp ? s->max_exp - 1 : 0; in process_float()
277 s->max_exp = 0; in scan_float()
284 if (get_exponent(f) > s->max_exp && get_exponent(f) < 255) in scan_float()
285 s->max_exp = get_exponent(f); in scan_float()
293 if (get_exponent(f) > s->max_exp && get_exponent(f) < 255) in scan_float()
294 s->max_exp = get_exponent(f); in scan_float()
299 if (get_exponent(f) > s->max_exp in scan_float()
2162 const int max_exp = s->float_max_exp; pack_float_sample() local
[all...]
/third_party/json/include/nlohmann/detail/conversions/
H A Dto_chars.hpp972 If v is in the range [10^min_exp, 10^max_exp) it will be printed in fixed-point
976 @pre max_exp > 0
981 int min_exp, int max_exp)
984 JSON_ASSERT(max_exp > 0);
993 if (k <= n && n <= max_exp)
996 // len <= max_exp + 2
1005 if (0 < n && n <= max_exp)
/third_party/python/Lib/test/
H A Dtest_strtod.py27 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024):
68 if e + q.bit_length() > max_exp:
H A Dtest_long.py32 DBL_MAX_EXP = sys.float_info.max_exp
47 SHIFT_MAX = sys.float_info.max_exp - PRECISION
/third_party/python/Lib/test/test_capi/
H A Dtest_getargs.py50 DBL_MAX_EXP = sys.float_info.max_exp
/third_party/json/tests/abi/include/nlohmann/
H A Djson_v3_10_5.hpp15907 If v is in the range [10^min_exp, 10^max_exp) it will be printed in fixed-point
15911 @pre max_exp > 0
15916 int min_exp, int max_exp)
15919 JSON_ASSERT(max_exp > 0);
15928 if (k <= n && n <= max_exp)
15931 // len <= max_exp + 2
15940 if (0 < n && n <= max_exp)
/third_party/json/single_include/nlohmann/
H A Djson.hpp17755 If v is in the range [10^min_exp, 10^max_exp) it will be printed in fixed-point
17759 @pre max_exp > 0
17764 int min_exp, int max_exp)
17767 JSON_ASSERT(max_exp > 0);
17776 if (k <= n && n <= max_exp)
17779 // len <= max_exp + 2
17788 if (0 < n && n <= max_exp)

Completed in 56 milliseconds