Searched refs:min_exp (Results 1 – 12 of 12) sorted by relevance
/third_party/rust/crates/minimal-lexical/etc/ |
D | lemire_table.py | 40 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):
|
D | bellerophon_table.py | 85 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/ |
D | cgcc | 199 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/ |
D | test_strtod.py | 27 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
|
D | test_long.py | 33 DBL_MIN_EXP = sys.float_info.min_exp
|
D | test_math.py | 609 etiny = float_info.min_exp - mant_dig
|
/third_party/ffmpeg/libavcodec/ |
D | ac3enc_template.c | 275 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()
|
D | ac3dsp.c | 45 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/ |
D | to_chars.hpp | 981 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/ |
D | sys.rst | 546 | :const:`min_exp` | DBL_MIN_EXP | minimum integer *e* such that ``radix**(e-1)`` is|
|
/third_party/json/tests/abi/include/nlohmann/ |
D | json_v3_10_5.hpp | 15916 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/ |
D | json.hpp | 17764 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()
|