| /netbsd/src/lib/libc/gdtoa/test/ |
| D | d.out | 3 strtod consumes 4 bytes and returns 17 with f = 1.23 = #3ff3ae14 7ae147ae 9 fI[0] == strtod 13 strtod consumes 8 bytes and returns 1 with f = 1.23e+20 = #441aabdf 2145b430 17 fI[0] == fI[1] == strtod 21 strtod consumes 8 bytes and returns 33 with f = 1.2300000000000001e-20 = #3bcd0ae4 cf767531 27 fI[1] == strtod 31 strtod consumes 10 bytes and returns 17 with f = 1.2345678899999999 = #3ff3c0ca 4283de1b 37 fI[0] == strtod 41 strtod consumes 14 bytes and returns 17 with f = 1.23456589e+20 = #441ac537 a660b997 47 fI[0] == strtod [all …]
|
| D | Q.ou0 | 11 fI[0] == strtod 33 fI[0] == strtod 45 fI[0] == strtod 77 fI[0] == strtod 89 fI[1] == strtod 101 fI[0] == strtod 113 fI[0] == strtod 125 fI[0] == strtod 137 fI[1] == strtod 149 fI[0] == strtod [all …]
|
| D | dd.out | 13 ddI[0] == strtod 37 ddI[1] == strtod 51 ddI[0] == strtod 85 ddI[0] == strtod 99 ddI[0] == strtod 113 ddI[1] == strtod 127 ddI[1] == strtod 141 ddI[1] == strtod 155 ddI[1] == strtod 169 ddI[1] == strtod [all …]
|
| D | Q.ou1 | 14 fI[0] == strtod 41 fI[0] == strtod 56 fI[0] == strtod 95 fI[0] == strtod 110 fI[1] == strtod 125 fI[0] == strtod 140 fI[0] == strtod 155 fI[0] == strtod 170 fI[1] == strtod 185 fI[0] == strtod [all …]
|
| D | ddsi.out | 13 ddI[0] == strtod 37 ddI[1] == strtod 51 ddI[0] == strtod 85 ddI[0] == strtod 99 ddI[0] == strtod 113 ddI[1] == strtod 127 ddI[1] == strtod 141 ddI[1] == strtod 155 ddI[1] == strtod 169 ddI[0] == strtod [all …]
|
| D | README | 48 input numbers; it converts both with strtod and feeds the result 56 Program strtodt tests strtod on some hard cases (in file testnos3) 67 to manually test strtof, strtod, etc., using fegetround().
|
| D | ddtest.c | 134 u.dd[0] = strtod(s, &se); in main() 135 u.dd[1] = strtod(se, &se); in main()
|
| D | dt.c | 175 dval(&d1) = strtod(buf, (char **)0); 228 dval(&d) = strtod(buf,&se); in main()
|
| /netbsd/src/tests/lib/libc/stdlib/ |
| D | t_strtod.c | 67 double d = strtod(buf, NULL); in ATF_TC_BODY() 121 d = strtod(str, &end); /* -0.0 */ in ATF_TC_BODY() 129 d = strtod(str, &end); /* -0.0 */ in ATF_TC_BODY() 150 volatile double d = strtod(inf_strings[i], NULL); in ATF_TC_BODY() 210 volatile double d = strtod(nan_string, &end); in ATF_TC_BODY() 279 volatile double d1 = strtod(val, NULL); in ATF_TC_BODY() 281 volatile double d2 = strtod(val, NULL); in ATF_TC_BODY() 308 volatile double d = strtod(tmp, NULL); in ATF_TC_BODY() 340 volatile double d = strtod(str, NULL); in ATF_TC_BODY() 368 d = strtod(str, NULL); in ATF_TC_BODY()
|
| D | t_atoi.c | 53 ATF_REQUIRE(atof("0") == strtod("0", NULL)); in ATF_TC_BODY() 54 ATF_REQUIRE(atof("-1") == strtod("-1", NULL)); in ATF_TC_BODY() 55 ATF_REQUIRE(atof(buf) == strtod(buf, NULL)); in ATF_TC_BODY()
|
| /netbsd/src/usr.sbin/envstat/ |
| D | config.c | 517 val = strtod(strval, &endptr); in config_devblock_check_sensorprops() 536 val = strtod(strval, &endptr); in config_devblock_check_sensorprops() 564 val = strtod(strval, &endptr); in config_devblock_check_sensorprops() 592 val = strtod(strval, &endptr); in config_devblock_check_sensorprops() 620 val = strtod(strval, &endptr); in config_devblock_check_sensorprops() 745 val = strtod(strval, &endptr); in convert_val_to_pnumber() 763 val = strtod(value, &endptr); in convert_val_to_pnumber() 778 val = strtod(value, &endptr); in convert_val_to_pnumber()
|
| /netbsd/src/lib/libc/gdtoa/ |
| D | README | 16 are generalizations of the strtod and dtoa routines described in 64 strtod 99 Functions strtod and strtof have "natural" return types, float and 100 double -- strtod is specified by the C standard, and strtof appears 113 Source files g_ddfmt.c, misc.c, smisc.c, strtod.c, strtodg.c, and ulp.c 132 By default, the core routine strtodg and strtod set errno to ERANGE 136 Routine strtod is based on netlib's "dtoa.c from fp", and 137 (f = strtod(s,se)) is more efficient for some conversions than, say, 138 strtord(s,se,1,&f). Parts of strtod require true IEEE double 149 Source file strtodnrp.c gives a strtod that does not require 53-bit [all …]
|
| D | strtodnrp.c | 44 strtod(s, sp) CONST char *s; char **sp; in strtod() function 46 strtod(CONST char *s, char **sp)
|
| D | makefile | 52 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\
|
| D | Makefile.inc | 27 SRCS+= strtod.c
|
| /netbsd/src/lib/libc/stdlib/ |
| D | Makefile.inc | 60 strfmon.3 strsuftoll.3 strtod.3 strtoi.3 strtol.3 strtou.3 strtoul.3 \ 104 MLINKS+=strtod.3 strtof.3 strtod.3 strtold.3
|
| D | atof.c | 49 return (strtod(ascii, NULL)); in atof()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/generic/ |
| D | c_locale.cc | 95 double __d = strtod(__s, &__sanity); in __convert_to_v() 157 __v = strtod(__s, &__sanity); in __convert_to_v()
|
| /netbsd/src/lib/libm/gen/ |
| D | nan.c | 47 #define NAN_STRTOD strtod
|
| /netbsd/src/games/random/ |
| D | random.c | 94 denom = strtod(*argv, &ep); in main()
|
| /netbsd/src/usr.bin/systat/ |
| D | main.c | 128 if ((naptime = strtod(optarg, NULL)) <= 0) in main() 147 naptime = strtod(argv[0], NULL); in main()
|
| /netbsd/src/external/bsd/ntp/dist/util/ |
| D | timetrim.c | 92 value = strtod(argv[0], &rem); in main()
|
| /netbsd/src/external/mit/lua/dist/src/ |
| D | luaconf.h | 483 #define lua_str2number(s,p) strtod((s), (p)) 643 #define lua_str2number(s,p) ((lua_Number)strtod((s), (p)))
|
| /netbsd/src/external/gpl3/gdb/dist/libiberty/ |
| D | strtod.c | 51 strtod (char *str, char **ptr) in strtod() function
|
| /netbsd/src/external/gpl3/gcc/dist/libiberty/ |
| D | strtod.c | 51 strtod (char *str, char **ptr) in strtod() function
|