Home | History | Annotate | Download | only in stdlib

Lines Matching refs:strtod

55 	atf_tc_set_md_var(tc, "descr", "A basic test of strtod(3)");
67 double d = strtod(buf, NULL);
111 atf_tc_set_md_var(tc, "descr", "A strtod(3) with hexadecimals");
121 d = strtod(str, &end); /* -0.0 */
129 d = strtod(str, &end); /* -0.0 */
140 atf_tc_set_md_var(tc, "descr", "A strtod(3) with INF (PR lib/33262)");
150 volatile double d = strtod(inf_strings[i], NULL);
199 atf_tc_set_md_var(tc, "descr", "A strtod(3) with NaN");
210 volatile double d = strtod(nan_string, &end);
264 atf_tc_set_md_var(tc, "descr", "Test rounding in strtod(3)");
272 * Test that strtod(3) honors the current rounding mode.
279 volatile double d1 = strtod(val, NULL);
281 volatile double d2 = strtod(val, NULL);
291 atf_tc_set_md_var(tc, "descr", "Test underflow in strtod(3)");
308 volatile double d = strtod(tmp, NULL);
311 atf_tc_fail("strtod(3) did not detect underflow");
317 * http://www.exploringbinary.com/a-bug-in-the-bigcomp-function-of-david-gays-strtod/
340 volatile double d = strtod(str, NULL);
368 d = strtod(str, NULL);