Lines Matching refs:p
147 char *p; in test() local
151 p = efcvt (tests[no].value, tests[no].ndigit, &decpt, &sign); in test()
154 || strcmp (p, tests[no].result) != 0) in test()
158 p, decpt, sign); in test()
191 char *p; in special() local
194 p = ECVT (NAN, 10, &decpt, &sign); in special()
195 if (sign != 0 || strcmp (p, "nan") != 0) in special()
196 output_error (NAME (ECVT), NAN, 10, "nan", 0, 0, p, decpt, sign); in special()
198 p = ECVT (INFINITY, 10, &decpt, &sign); in special()
199 if (sign != 0 || strcmp (p, "inf") != 0) in special()
200 output_error (NAME (ECVT), INFINITY, 10, "inf", 0, 0, p, decpt, sign); in special()