Lines Matching refs:op_prec
1250 int op_prec = p - 3; in approximate() local
1251 BigInteger op_appr = op.get_appr(op_prec); in approximate()
1267 current_term = scale(current_term.multiply(op_appr), op_prec); in approximate()
1292 int op_prec = p - 2; in approximate() local
1293 BigInteger op_appr = op.get_appr(op_prec); in approximate()
1310 current_term = scale(current_term.multiply(op_appr), op_prec); in approximate()
1311 current_term = scale(current_term.multiply(op_appr), op_prec); in approximate()
1387 int op_prec = p - 3; in approximate() local
1388 BigInteger op_appr = op.get_appr(op_prec); in approximate()
1390 BigInteger x_nth = scale(op_appr, op_prec - calc_precision); in approximate()
1401 x_nth = scale(x_nth.multiply(op_appr), op_prec); in approximate()
1440 int op_prec = p - 3; // always <= -2 in approximate() local
1441 BigInteger op_appr = op.get_appr(op_prec); in approximate()
1456 BigInteger current_term = op_appr.shiftLeft(op_prec - calc_precision); in approximate()
1473 current_factor = scale(current_factor.multiply(op_appr), op_prec + 2); in approximate()
1480 current_factor = scale(current_factor, op_prec - 2); in approximate()
1537 int op_prec = (msd - fp_op_prec) & ~1; in approximate() local
1538 int working_prec = op_prec - fp_op_prec; in approximate()
1539 BigInteger scaled_bi_appr = op.get_appr(op_prec) in approximate()