| /src/external/apache2/llvm/dist/libcxx/include/__support/solaris/ |
| floatingpoint.h | 10 #define strtod sun_strtod macro 13 #undef strtod macro
|
| xlocale.h | 63 return strtod(__nptr, __endptr);
|
| /src/lib/libc/stdlib/ |
| atof.c | 49 return (strtod(ascii, NULL));
|
| /src/external/gpl3/gdb/dist/readline/readline/ |
| ansi_stdlib.h | 30 extern double strtod ();
|
| /src/external/gpl3/gdb.old/dist/readline/readline/ |
| ansi_stdlib.h | 30 extern double strtod ();
|
| /src/tests/lib/libc/stdlib/ |
| t_atoi.c | 44 "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));
|
| t_strtod.c | 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)") [all...] |
| /src/lib/libc/gdtoa/ |
| strtodnrp.c | 33 /* This is a variant of strtod that works on Intel ia32 systems */ 44 strtod(s, sp) CONST char *s; char **sp; function 46 strtod(CONST char *s, char **sp)
|
| /src/external/gpl3/gcc/lib/libquadmath/ |
| Makefile | 16 SRCS= ${G_libquadmath_la_SOURCES:S,math/,,:S,printf/,,:S,strtod/,,} 37 .PATH: ${DIST}/libquadmath/strtod
|
| defs.mk | 5 G_libquadmath_la_SOURCES=math/x2y2m1q.c math/acoshq.c math/fmodq.c math/acosq.c math/frexpq.c math/rem_pio2q.c math/asinhq.c math/hypotq.c math/remainderq.c math/asinq.c math/rintq.c math/atan2q.c math/isinfq.c math/roundq.c math/atanhq.c math/isnanq.c math/scalblnq.c math/atanq.c math/j0q.c math/scalbnq.c math/cbrtq.c math/j1q.c math/signbitq.c math/ceilq.c math/jnq.c math/sincos_table.c math/complex.c math/ldexpq.c math/sincosq.c math/copysignq.c math/lgammaq.c math/sincosq_kernel.c math/coshq.c math/llroundq.c math/sinhq.c math/cosq.c math/log10q.c math/sinq.c math/cosq_kernel.c math/log1pq.c math/sinq_kernel.c math/erfq.c math/logq.c math/sqrtq.c math/expm1q.c math/lroundq.c math/tanhq.c math/expq.c math/modfq.c math/tanq.c math/fabsq.c math/nanq.c math/tgammaq.c math/finiteq.c math/nextafterq.c math/truncq.c math/floorq.c math/powq.c math/fmaq.c math/logbq.c math/exp2q.c math/issignalingq.c math/lgammaq_neg.c math/lgammaq_product.c math/tanq_kernel.c math/tgammaq_product.c math/casinhq_kernel.c math/cacoshq.c math/cacosq.c math/casinhq.c math/casinq.c math/catanhq.c math/catanq.c math/cimagq.c math/conjq.c math/cprojq.c math/crealq.c math/fdimq.c math/fmaxq.c math/fminq.c math/ilogbq.c math/llrintq.c math/log2q.c math/lrintq.c math/nearbyintq.c math/remquoq.c math/ccoshq.c math/cexpq.c math/clog10q.c math/clogq.c math/csinq.c math/csinhq.c math/csqrtq.c math/ctanq.c math/ctanhq.c printf/addmul_1.c printf/add_n.c printf/cmp.c printf/divrem.c printf/flt1282mpn.c printf/fpioconst.c printf/lshift.c printf/mul_1.c printf/mul_n.c printf/mul.c printf/printf_fphex.c printf/printf_fp.c printf/quadmath-printf.c printf/rshift.c printf/submul_1.c printf/sub_n.c strtod/strtoflt128.c strtod/mpn2flt128.c strtod/tens_in_limb.c
|
| /src/lib/libm/gen/ |
| nan.c | 47 #define NAN_STRTOD strtod
|
| /src/external/apache2/llvm/dist/libcxx/include/__support/android/ |
| locale_bionic.h | 51 return ::strtod(__nptr, __endptr);
|
| /src/usr.bin/make/unit-tests/ |
| cond-token-number.mk | 11 # Even though -0 is a number and would be accepted by strtod, it is not 22 # Even though +0 is a number and would be accepted by strtod, it is not 33 # Even though -1 is a number and would be accepted by strtod, it is not 44 # Even though +1 is a number and would be accepted by strtod, it is not
|
| /src/games/random/ |
| random.c | 94 denom = strtod(*argv, &ep);
|
| /src/external/apache2/llvm/dist/libcxx/include/__support/xlocale/ |
| __strtonum_fallback.h | 29 return ::strtod(nptr, endptr);
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| FileUtilities.cpp | 110 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd)); 111 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd)); 119 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); 129 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd));
|
| /src/external/bsd/ntp/dist/util/ |
| timetrim.c | 92 value = strtod(argv[0], &rem);
|
| /src/external/gpl3/binutils/dist/libiberty/ |
| strtod.c | 1 /* Implementation of strtod for systems with atof. 27 @deftypefn Supplemental double strtod (const char *@var{string}, @ 51 strtod (char *str, char **ptr) function
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| strtod.c | 1 /* Implementation of strtod for systems with atof. 27 @deftypefn Supplemental double strtod (const char *@var{string}, @ 51 strtod (char *str, char **ptr) function
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| strtod.c | 1 /* Implementation of strtod for systems with atof. 27 @deftypefn Supplemental double strtod (const char *@var{string}, @ 51 strtod (char *str, char **ptr) function
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/ |
| stdlib.h | 78 using std::strtod;
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| strtod.c | 1 /* Implementation of strtod for systems with atof. 27 @deftypefn Supplemental double strtod (const char *@var{string}, @ 51 strtod (char *str, char **ptr) function
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/ |
| stdlib.h | 75 using std::strtod;
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| strtod.c | 1 /* Implementation of strtod for systems with atof. 27 @deftypefn Supplemental double strtod (const char *@var{string}, @ 51 strtod (char *str, char **ptr) function
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| strtod.c | 1 /* Implementation of strtod for systems with atof. 27 @deftypefn Supplemental double strtod (const char *@var{string}, @ 51 strtod (char *str, char **ptr) function
|