Home
last modified time | relevance | path

Searched refs:get_appr (Results 1 – 3 of 3) sorted by relevance

/external/crcalc/src/com/hp/creals/
DCR.java345 public synchronized BigInteger get_appr(int precision) { in get_appr() method in CR
382 get_appr(n - 1); in msd()
481 BigInteger this_appr = get_appr(needed_prec); in compareTo()
482 BigInteger x_appr = x.get_appr(needed_prec); in compareTo()
515 BigInteger this_appr = get_appr(needed_prec); in signum()
578 BigInteger scaled_int = scaled_CR.get_appr(0); in toString()
656 BigInteger scaled_int = scaled_res.get_appr(0); in toStringFloatRep()
663 scaled_int = scaled_res.get_appr(0); in toStringFloatRep()
680 return get_appr(0); in BigIntegerValue()
715 double scaled_int = get_appr(needed_prec).doubleValue(); in doubleValue()
[all …]
DUnaryCRFunction.java377 BigInteger low_appr = low[0].get_appr(working_arg_prec) in approximate()
379 BigInteger high_appr = high[0].get_appr(working_arg_prec) in approximate()
381 BigInteger arg_appr = arg.get_appr(working_eval_prec); in approximate()
386 f_h = f_high[0].get_appr(working_eval_prec); in approximate()
388 f_l = f_low[0].get_appr(working_eval_prec); in approximate()
405 BigInteger rough_appr = get_appr(rough_prec); in approximate()
414 f_h = f_high[0].get_appr(working_eval_prec); in approximate()
418 f_h = fn.execute(h_cr).get_appr(working_eval_prec); in approximate()
423 f_l = f_low[0].get_appr(working_eval_prec); in approximate()
427 f_l = fn.execute(l_cr).get_appr(working_eval_prec); in approximate()
[all …]
/external/crcalc/tests/src/com/hp/creals/
DSlowCRTest.java45 BigInteger appr = x.get_appr(TEST_PREC); in isApprInt()
158 if (!x.get_appr(TEST_PREC).equals(BigInteger.ZERO)) { in checkBasic()