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

/haiku/src/system/libroot/posix/glibc/wcsmbs/
H A Dwcstod.c21 /* The actual implementation for all floating point sizes is in strtod.c. */
25 #include <stdlib/strtod.c>
H A Dwcstof.c21 /* The actual implementation for all floating point sizes is in strtod.c.
43 #include <stdlib/strtod.c>
H A Dwcstold.c24 /* The actual implementation for all floating point sizes is in strtod.c.
47 # include <stdlib/strtod.c>
/haiku/src/system/libroot/posix/stdlib/
H A Datof.c16 return strtod(num, NULL);
H A Dstrtod.c2 * This implementation is broken, as e.g. strtod("1.7E+064", ...) yields an
7 * So, currently we have to live with the fact that strtod() in our kernel
73 /* strtod for IEEE-, VAX-, and IBM-arithmetic machines.
75 * This strtod returns a nearest machine number to the input decimal
365 extern "C" double strtod(const char *s00, char **se);
1125 strtod(const char * __restrict s00, char ** __restrict se) function
1632 return strtod(number, _end);
/haiku/src/bin/rc/
H A Dlexer.l111 {DEC}+{EXP} yylval.f = strtod(yytext, NULL); return FLOAT;
112 {DEC}*\.{DEC}+{EXP}? yylval.f = strtod(yytext, NULL); return FLOAT;
113 {DEC}+\.{DEC}*{EXP}? yylval.f = strtod(yytext, NULL); return FLOAT;
/haiku/src/kits/debugger/value/value_formatters/
H A DFloatValueFormatter.cpp87 double parsedValue = strtod(text, &parseEnd);
/haiku/src/kits/shared/
H A DJsonEvent.cpp121 return strtod(Content(), NULL);
H A DExpressionParser.cpp447 return strtod(buffer, NULL);
/haiku/src/bin/addattr/
H A DaddAttr.cpp72 floatValue = strtod(value, NULL);
/haiku/src/bin/
H A Dsetvolume.cpp124 volume = strtod(argv[1], &end);
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstdlib.h160 extern double strtod (__const char *__restrict __nptr,
310 strtod (__const char *__restrict __nptr, char **__restrict __endptr) __THROW
379 return strtod (__nptr, (char **) NULL);
H A Dstrtod.c37 # define STRTOF strtod
/haiku/headers/posix/
H A Dstdlib.h95 extern double strtod(const char *string, char **end);
/haiku/src/bin/screenmode/
H A Dscreenmode.cpp191 refresh = strtod(argv[depthIndex + 1], NULL);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DQuery.cpp825 fValue.Float = strtod(string, &string);
829 fValue.Double = strtod(string, &string);
/haiku/src/apps/diskprobe/
H A DTypeEditors.cpp507 float value = strtod(number, NULL);
513 double value = strtod(number, NULL);
/haiku/headers/private/file_systems/
H A DQueryParser.h607 fValue.Float = strtod(string, &string);
611 fValue.Double = strtod(string, &string);
/haiku/src/bin/network/ping/
H A Dping.c390 t = strtod(optarg, &ep) * 1000.0;
519 t = strtod(optarg, &ep);
H A Dping6.c453 t = strtod(optarg, &e);
562 t = strtod(optarg, &e);
/haiku/src/system/libroot/stubbed/
H A Dlibroot_stubs.c2517 void strtod() {} function
H A Dlibroot_stubs_legacy.c2509 void strtod() {} function

Completed in 356 milliseconds