Home | History | Annotate | Download | only in python2.7

Lines Matching defs:_ilog

5546 def _ilog(x, M, L = 8):
5618 log_d = _ilog(c, M) # error < 5 + 22 = 27
5651 # _ilog magnifies existing error in c by a factor of at most 10
5652 log_d = _ilog(c, 10**p) # error < 5 + 22 = 27
5698 digits = str(_div_nearest(_ilog(10*M, M), 100))