Lines Matching refs:op_prec
1208 int op_prec = p - 3; in approximate() local
1209 BigInteger op_appr = op.get_appr(op_prec); in approximate()
1225 current_term = scale(current_term.multiply(op_appr), op_prec); in approximate()
1250 int op_prec = p - 2; in approximate() local
1251 BigInteger op_appr = op.get_appr(op_prec); in approximate()
1268 current_term = scale(current_term.multiply(op_appr), op_prec); in approximate()
1269 current_term = scale(current_term.multiply(op_appr), op_prec); in approximate()
1345 int op_prec = p - 3; in approximate() local
1346 BigInteger op_appr = op.get_appr(op_prec); in approximate()
1349 BigInteger x_nth = scale(op_appr, op_prec - calc_precision); in approximate()
1360 x_nth = scale(x_nth.multiply(op_appr), op_prec); in approximate()
1399 int op_prec = p - 3; // always <= -2 in approximate() local
1400 BigInteger op_appr = op.get_appr(op_prec); in approximate()
1415 BigInteger current_term = op_appr.shiftLeft(op_prec - calc_precision); in approximate()
1432 current_factor = scale(current_factor.multiply(op_appr), op_prec + 2); in approximate()
1439 current_factor = scale(current_factor, op_prec - 2); in approximate()
1486 int op_prec = (msd - fp_op_prec) & ~1; in approximate() local
1487 int working_prec = op_prec - fp_op_prec; in approximate()
1488 BigInteger scaled_bi_appr = op.get_appr(op_prec) in approximate()