Home
last modified time | relevance | path

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

/third_party/rust/crates/minimal-lexical/etc/
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): argument
68 for q in range(min_exp, 0):
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/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.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()
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/json/include/nlohmann/detail/conversions/
Dto_chars.hpp981 int min_exp, int max_exp) in format_buffer() argument
983 JSON_ASSERT(min_exp < 0); in format_buffer()
1017 if (min_exp < n && n <= 0) in format_buffer()
/third_party/python/Doc/library/
Dsys.rst546 | :const:`min_exp` | DBL_MIN_EXP | minimum integer *e* such that ``radix**(e-1)`` is|
/third_party/json/tests/abi/include/nlohmann/
Djson_v3_10_5.hpp15916 int min_exp, int max_exp) in format_buffer() argument
15918 JSON_ASSERT(min_exp < 0); in format_buffer()
15952 if (min_exp < n && n <= 0) in format_buffer()
/third_party/json/single_include/nlohmann/
Djson.hpp17764 int min_exp, int max_exp) in format_buffer() argument
17766 JSON_ASSERT(min_exp < 0); in format_buffer()
17800 if (min_exp < n && n <= 0) in format_buffer()