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.java366 public synchronized BigInteger get_appr(int precision) { in get_appr() method in CR
403 get_appr(n - 1); in msd()
506 BigInteger this_appr = get_appr(needed_prec); in compareTo()
507 BigInteger x_appr = x.get_appr(needed_prec); in compareTo()
543 BigInteger this_appr = get_appr(needed_prec); in signum()
609 BigInteger scaled_int = scaled_CR.get_appr(0); in toString()
687 BigInteger scaled_int = scaled_res.get_appr(0); in toStringFloatRep()
694 scaled_int = scaled_res.get_appr(0); in toStringFloatRep()
711 return get_appr(0); in BigIntegerValue()
748 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()