Lines Matching refs:s
46 string_to_fp (mpfr_t f, const char *s, mpfr_rnd_t rnd) in string_to_fp() argument
52 int r0 = mpfr_strtofr (f2, s, NULL, 0, rnd); in string_to_fp()
58 int r = mpfr_strtofr (f, s, NULL, 0, rnd); in string_to_fp()
74 round_str (FILE *fout, const char *s, int prec, int emin, int emax, in round_str() argument
83 int r = string_to_fp (f, s, MPFR_RNDD); in round_str()
101 string_to_fp (f, s, MPFR_RNDN); in round_str()
105 string_to_fp (f, s, MPFR_RNDZ); in round_str()
109 string_to_fp (f, s, MPFR_RNDU); in round_str()
119 round_for_all (FILE *fout, const char *s) in round_for_all() argument
138 for (p = s; *p; p++) in round_for_all()
141 if ((p - s) % 60 == 59 && p[1]) in round_for_all()
149 round_str (fout, s, formats[i].prec, formats[i].emin, in round_for_all()