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

Lines Matching refs:lxc

5800     # log(x) = lxc*10**(-p-b-1), to p+b+1 places after the decimal point
5801 lxc = _dlog(xc, xe, p+b+1)
5803 # compute product y*log(x) = yc*lxc*10**(-p-b-1+ye) = pc*10**(-p-1)
5806 pc = lxc*yc*10**shift
5808 pc = _div_nearest(lxc*yc, 10**-shift)