Home
last modified time | relevance | path

Searched refs:min_exp (Results 1 - 11 of 11) sorted by relevance

/third_party/rust/crates/minimal-lexical/etc/
H A Dlemire_table.py40 min_exp = minimum_exponent(10)
46 print('pub const SMALLEST_POWER_OF_FIVE: i32 = {};'.format(min_exp))
51 print_proper_powers(min_exp, max_exp, bias)
62 def print_proper_powers(min_exp, max_exp, bias):
68 for q in range(min_exp, 0):
H A Dbellerophon_table.py85 min_exp = math.floor(math.log(5e-324, base) - math.log(0xFFFFFFFFFFFFFFFF, base))
87 bitshift = calculate_bitshift(base, abs(min_exp - step))
94 for exp in range(-step, min_exp-step, -step):
/third_party/python/Lib/test/
H A Dtest_strtod.py27 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024):
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
H A Dtest_long.py33 DBL_MIN_EXP = sys.float_info.min_exp
H A Dtest_math.py636 etiny = float_info.min_exp - mant_dig
/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()
284 min_exp = FFMIN(exp, min_exp); in apply_channel_coupling()
289 while (min_exp < master_exp * 3) in apply_channel_coupling()
H A Dac3dsp.c45 uint8_t min_exp = *exp; in ac3_exponent_min_c() local
49 if (next_exp < min_exp) in ac3_exponent_min_c()
50 min_exp = next_exp; in ac3_exponent_min_c()
53 *exp++ = min_exp; in ac3_exponent_min_c()
/third_party/ltp/tools/sparse/sparse-src/
H A 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/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
975 @pre min_exp < 0
981 int min_exp, int max_exp)
983 JSON_ASSERT(min_exp < 0);
1017 if (min_exp < n && n <= 0)
1020 // len <= 2 + (-min_exp - 1) + max_digits10
/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
15910 @pre min_exp < 0
15916 int min_exp, int max_exp)
15918 JSON_ASSERT(min_exp < 0);
15952 if (min_exp < n && n <= 0)
15955 // len <= 2 + (-min_exp - 1) + max_digits10
/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
17758 @pre min_exp < 0
17764 int min_exp, int max_exp)
17766 JSON_ASSERT(min_exp < 0);
17800 if (min_exp < n && n <= 0)
17803 // len <= 2 + (-min_exp - 1) + max_digits10

Completed in 59 milliseconds