Lines Matching refs:base
2050 base = _WorkRep(self.to_integral_value())
2054 base = (base.int % modulo * pow(10, base.exp, modulo)) % modulo
2056 base = pow(base, 10, modulo)
2057 base = pow(base, exponent.int, modulo)
2059 return _dec_from_triple(sign, str(base), 0)
2773 # base 100, so that 100**(l-1) <= c < 100**l.
2783 # rescale so that c has exactly prec base 100 'digits'
3203 """Returns the natural (base e) logarithm of self."""
3283 """Returns the base 10 logarithm of self."""
3860 # Register Decimal as a kind of Number (an abstract base class).
4677 """Returns the natural (base e) logarithm of the operand.
4699 """Returns the base 10 logarithm of the operand.