Searched refs:strtod (Results 1 - 25 of 75) sorted by relevance

123

/freebsd-10.3-release/contrib/libreadline/
H A Dansi_stdlib.h30 extern double strtod ();
/freebsd-10.3-release/lib/libc/stdlib/
H A Datof.c48 return strtod(ascii, (char **)NULL);
H A DMakefile.inc28 realpath.3 strfmon.3 strtod.3 strtol.3 strtonum.3 strtoul.3 system.3 \
46 MLINKS+=strtod.3 strtof.3 strtod.3 strtold.3
/freebsd-10.3-release/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_atoi.c44 "Test that atof(3) matches the corresponding strtod(3) call");
53 ATF_REQUIRE(atof("0") == strtod("0", NULL));
54 ATF_REQUIRE(atof("-1") == strtod("-1", NULL));
55 ATF_REQUIRE(atof(buf) == strtod(buf, NULL));
H A Dt_strtod.c63 atf_tc_set_md_var(tc, "descr", "A basic test of strtod(3)");
75 double d = strtod(buf, NULL);
85 atf_tc_set_md_var(tc, "descr", "A strtod(3) with hexadecimals");
101 d = strtod(str, &end); /* -0.0 */
108 d = strtod(str, &end); /* -0.0 */
118 atf_tc_set_md_var(tc, "descr", "A strtod(3) with INF (PR lib/33262)");
125 volatile double d = strtod(inf_strings[i], NULL);
177 atf_tc_set_md_var(tc, "descr", "A strtod(3) with NaN");
185 volatile double d = strtod(nan_string, &end);
244 atf_tc_set_md_var(tc, "descr", "Test rouding in strtod(
[all...]
/freebsd-10.3-release/contrib/gdtoa/
H A Dstrtodnrp.c31 /* This is a variant of strtod that works on Intel ia32 systems */
42 strtod(s, sp) CONST char *s; char **sp; function
44 strtod(CONST char *s, char **sp)
H A Dmakefile52 strtoIf.c strtoIg.c strtoIx.c strtoIxL.c strtod.c strtodI.c\
73 strtoIxL.c strtod.c strtodI.c strtodg.c strtodnrp.c strtof.c\
H A Dgdtoa.h112 extern double strtod ANSI((CONST char *, char **));
/freebsd-10.3-release/contrib/llvm/lib/Support/
H A DFileUtilities.cpp104 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd));
105 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd));
113 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd));
123 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd));
/freebsd-10.3-release/lib/libc/tests/stdio/
H A Dscanfloat_test.c273 /* strtod() should round small numbers to 0. */
282 ATF_TC_WITHOUT_HEAD(strtod); variable
283 ATF_TC_BODY(strtod, tc)
289 ATF_REQUIRE(strtod("0xy", &endp) == 0);
295 ATF_REQUIRE(strtod("2e308", &endp) == DBL_MAX);
298 ATF_REQUIRE(strtod("2e308", &endp) == INFINITY);
301 ATF_REQUIRE(strtod("2e308", &endp) == DBL_MAX);
304 ATF_REQUIRE(strtod("2e308", &endp) == INFINITY);
313 ATF_TP_ADD_TC(tp, strtod);
/freebsd-10.3-release/lib/libc/gdtoa/
H A DMakefile.inc9 strtod.c strtodg.c strtof.c strtord.c sum.c ulp.c
/freebsd-10.3-release/lib/msun/tests/
H A Dnan_test.c28 * Test for nan(), nanf(), and nanl(). We also test that strtod("nan(...)")
82 ad[1] = strtod(nan_str, &end);
88 /* nan("") == strtod("nan") */
89 ad[3] = strtod("nan", NULL);
H A Dilogb_test.c51 d = strtod(buf, &end);
/freebsd-10.3-release/contrib/libstdc++/config/locale/generic/
H A Dc_locale.cc62 double __d = strtod(__s, &__sanity);
96 double __d = strtod(__s, &__sanity);
/freebsd-10.3-release/contrib/libstdc++/include/c_compatibility/
H A Dstdlib.h60 using std::strtod;
/freebsd-10.3-release/contrib/gcclibs/libiberty/
H A Dstrtod.c1 /* Implementation of strtod for systems with atof.
27 @deftypefn Supplemental double strtod (const char *@var{string}, char **@var{endptr})
50 strtod (char *str, char **ptr) function
/freebsd-10.3-release/contrib/ntp/util/
H A Dtimetrim.c90 value = strtod(argv[0], &rem);
/freebsd-10.3-release/contrib/binutils/libiberty/
H A Dstrtod.c1 /* Implementation of strtod for systems with atof.
27 @deftypefn Supplemental double strtod (const char *@var{string}, char **@var{endptr})
50 strtod (char *str, char **ptr) function
/freebsd-10.3-release/contrib/libstdc++/include/c_std/
H A Dstd_cstdlib.h97 #undef strtod
133 using ::strtod;
/freebsd-10.3-release/usr.bin/systat/
H A Dcmds.c92 t = strtod(tmpstr1, NULL) * 1000000.0;
99 t = strtod(cp, NULL) * 1000000.0;
/freebsd-10.3-release/games/random/
H A Drandom.c125 denom = strtod(*argv, &ep);
/freebsd-10.3-release/contrib/netbsd-tests/lib/libc/gen/
H A Dt_fpsetround.c104 double d = strtod(tst[i].n, NULL);
/freebsd-10.3-release/usr.bin/calendar/
H A Dcalendar.c134 UTCOffset = strtod(optarg, NULL);
/freebsd-10.3-release/contrib/libstdc++/libmath/
H A Dmathconf.h303 # define strtof(s, e) strtod (s, e)
/freebsd-10.3-release/include/
H A Dstdlib.h106 double strtod(const char * __restrict, char ** __restrict);

Completed in 405 milliseconds

123