Lines Matching refs:n_digits_computed
130 size_t n_digits_computed; in mpf_get_str() local
223 n_digits_computed = mpn_get_str (tstr, base, tp + off, tn - off); in mpf_get_str()
225 exp_in_base = n_digits_computed - e; in mpf_get_str()
249 n_digits_computed = mpn_get_str (tstr, base, tp, tn); in mpf_get_str()
251 exp_in_base = n_digits_computed + e; in mpf_get_str()
256 if (n_digits_computed > n_digits) in mpf_get_str()
262 n_digits_computed = n_digits; in mpf_get_str()
269 n_digits_computed--; in mpf_get_str()
276 n_digits_computed = 1; in mpf_get_str()
287 if (n_digits > n_digits_computed) in mpf_get_str()
288 n_digits = n_digits_computed; in mpf_get_str()