Home
last modified time | relevance | path

Searched refs:log_10 (Results 1 – 3 of 3) sorted by relevance

/external/pigweed/pw_string/
Dtype_to_string.cc63 const uint_fast8_t log_10 = (64 - __builtin_clzll(integer | 1)) * 1233 >> 12; in DecimalDigitCount() local
66 return log_10 + (integer < kPowersOf10[log_10] ? 0u : 1u); in DecimalDigitCount()
/external/python/cpython2/Lib/
Ddecimal.py5639 log_10 = _log10_digits(p) # error < 1
5640 log_d = _div_nearest(log_d*M, log_10)
/external/python/cpython3/Lib/
D_pydecimal.py5797 log_10 = _log10_digits(p) # error < 1
5798 log_d = _div_nearest(log_d*M, log_10)