Home
last modified time | relevance | path

Searched refs:rough_appr (Results 1 – 2 of 2) sorted by relevance

/external/crcalc/src/com/hp/creals/
DCR.java894 BigInteger rough_appr = get_appr(low_prec); in exp() local
897 if (rough_appr.compareTo(big2) > 0 || rough_appr.compareTo(bigm2) < 0) { in exp()
957 BigInteger rough_appr = get_appr(-10); in asin() local
958 if (rough_appr.compareTo(big750) /* 1/sqrt(2) + a bit */ > 0){ in asin()
961 } else if (rough_appr.compareTo(bigm750) < 0) { in asin()
986 BigInteger rough_appr = get_appr(low_prec); /* In sixteenths */ in ln() local
987 if (rough_appr.compareTo(big0) < 0) { in ln()
990 if (rough_appr.compareTo(low_ln_limit) <= 0) { in ln()
993 if (rough_appr.compareTo(high_ln_limit) >= 0) { in ln()
994 if (rough_appr.compareTo(scaled_4) <= 0) { in ln()
[all …]
DUnaryCRFunction.java405 BigInteger rough_appr = get_appr(rough_prec); in approximate() local
407 trace("prev. prec = " + rough_prec + " appr = " + rough_appr); in approximate()
408 h = rough_appr.add(big1) in approximate()
410 l = rough_appr.subtract(big1) in approximate()