Home
last modified time | relevance | path

Searched refs:s00 (Results 1 – 8 of 8) sorted by relevance

/picolibc-3.7.0-3.6.0/newlib/libc/stdlib/
Dstrtold.c63 strtold_l (const char *__restrict s00, char **__restrict se, locale_t loc) in strtold_l() argument
67 _strtorx_l (s00, se, FLT_ROUNDS, &result, loc); in strtold_l()
72 strtold (const char *__restrict s00, char **__restrict se) in strtold() argument
76 _strtorx_l (s00, se, FLT_ROUNDS, &result, __get_current_locale ()); in strtold()
Dstrtod.c243 strtod_l (const char *__restrict s00, char **__restrict se, argument
279 for(s = s00;;s++) switch(*s) {
311 s00 = s + 1;
325 s = s00;
398 s00 = s;
429 s = s00;
476 s = s00;
1279 strtod (const char *__restrict s00,
1282 return strtod_l (s00, se, __get_current_locale ());
1323 strtof_l (const char *__restrict s00, char **__restrict se, locale_t loc)
[all …]
Dmprec.h314 extern "C" double strtod(const char *s00, char **se);
385 double _strtod_l (const char *__restrict s00,
390 int _strtodg_l (const char *s00, char **se,
Dstrtodg.c438 _strtodg_l (const char *s00, char **se, FPI *fpi, Long *exp, in _strtodg_l() argument
461 for(s = s00;;s++) switch(*s) { in _strtodg_l()
472 s = s00; in _strtodg_l()
492 s = s00; in _strtodg_l()
558 s = s00; in _strtodg_l()
561 s00 = s; in _strtodg_l()
592 s = s00; in _strtodg_l()
624 s = s00; in _strtodg_l()
/picolibc-3.7.0-3.6.0/newlib/libc/tinystdio/
Dstrtof_l.c39 strtof_l (const char *__restrict s00, in strtof_l() argument
44 return strtof (s00, se); in strtof_l()
Dstrtold_l.c41 strtold_l (const char *__restrict s00, in strtold_l() argument
46 return strtold (s00, se); in strtold_l()
Dstrtod_l.c39 strtod_l (const char *__restrict s00, in strtod_l() argument
44 return strtod (s00, se); in strtod_l()
/picolibc-3.7.0-3.6.0/newlib/
DChangeLog-201512829 * libc/stdlib/strtod.c (_strtod_r): Never change s00.