Lines Matching refs:places
1869 decimal places using the rounding mode for the current
2656 def _round(self, places, rounding):
2666 if places <= 0:
2670 ans = self._rescale(self.adjusted()+1-places, rounding)
2676 ans = ans._rescale(ans.adjusted()+1-places, rounding)
2764 # p places (or fewer in the case of underflow) will round
3237 places = p - self._ln_exp_bound() + 2 # at least p+3 places
3239 coeff = _dlog(c, e, places)
3243 places += 3
3244 ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places)
3318 places = p-self._log10_exp_bound()+2
3320 coeff = _dlog10(c, e, places)
3324 places += 3
3325 ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places)
5377 the coefficient of the first operand. The number of places of
5449 in the coefficient of the first operand. The number of places
5939 """Compute an approximation to exp(c*10**e), with p decimal places of
5992 # log(x) = lxc*10**(-p-b-1), to p+b+1 places after the decimal point