Lines Matching refs:rough_appr
854 BigInteger rough_appr = get_appr(low_prec); in exp() local
855 if (rough_appr.signum() < 0) return negate().exp().inverse(); in exp()
856 if (rough_appr.compareTo(big2) > 0) { in exp()
909 BigInteger rough_appr = get_appr(-10); in asin() local
910 if (rough_appr.compareTo(big750) /* 1/sqrt(2) + a bit */ > 0){ in asin()
913 } else if (rough_appr.compareTo(bigm750) < 0) { in asin()
938 BigInteger rough_appr = get_appr(low_prec); /* In sixteenths */ in ln() local
939 if (rough_appr.compareTo(big0) < 0) { in ln()
942 if (rough_appr.compareTo(low_ln_limit) <= 0) { in ln()
945 if (rough_appr.compareTo(high_ln_limit) >= 0) { in ln()
946 if (rough_appr.compareTo(scaled_4) <= 0) { in ln()
950 int extra_bits = rough_appr.bitLength() - 3; in ln()