/picolibc-latest/newlib/libc/stdlib/ |
D | wcstod.c | 147 wcstod_l (const wchar_t *nptr, wchar_t **endptr, in wcstod_l() argument 174 if (endptr != NULL) in wcstod_l() 175 *endptr = (wchar_t *)nptr; in wcstod_l() 192 if (endptr != NULL) { in wcstod_l() 210 *endptr = (wchar_t *)nptr + (end - buf); in wcstod_l() 219 wcstof_l (const wchar_t *nptr, wchar_t **endptr, in wcstof_l() argument 246 if (endptr != NULL) in wcstof_l() 247 *endptr = (wchar_t *)nptr; in wcstof_l() 264 if (endptr != NULL) { in wcstof_l() 282 *endptr = (wchar_t *)nptr + (end - buf); in wcstof_l() [all …]
|
D | wcstold.c | 43 wcstold_l (const wchar_t *__restrict nptr, wchar_t **__restrict endptr, in wcstold_l() argument 48 return wcstod_l(nptr, endptr, loc); in wcstold_l() 68 if (endptr != NULL) in wcstold_l() 69 *endptr = (wchar_t *) nptr; in wcstold_l() 86 if (endptr != NULL) in wcstold_l() 108 *endptr = (wchar_t *) nptr + (end - buf); in wcstold_l() 118 wcstold (const wchar_t *__restrict nptr, wchar_t **__restrict endptr) in wcstold() argument 122 return wcstod_l(nptr, endptr, __get_current_locale ()); in wcstold() 124 return wcstold_l(nptr, endptr, __get_current_locale ()); in wcstold()
|
D | strtoumax.c | 58 char ** __restrict endptr, int base, locale_t loc) in strtoumax_l() argument 121 if (endptr != NULL) in strtoumax_l() 122 *endptr = (char *)(any ? s - 1 : nptr); in strtoumax_l() 128 strtoumax(const char* __restrict nptr, char** __restrict endptr, int base) in strtoumax() argument 130 return strtoumax_l(nptr, endptr, base, __get_current_locale()); in strtoumax()
|
D | strtoimax.c | 57 strtoimax_l(const char * __restrict nptr, char ** __restrict endptr, int base, in strtoimax_l() argument 142 if (endptr != NULL) in strtoimax_l() 143 *endptr = (char *)(any ? s - 1 : nptr); in strtoimax_l() 148 strtoimax(const char* __restrict nptr, char** __restrict endptr, int base) in strtoimax() argument 150 return strtoimax_l(nptr, endptr, base, __get_current_locale()); in strtoimax()
|
D | strtol.c | 123 char **__restrict endptr, int base, locale_t loc) in _strtol_l() argument 133 if (endptr != 0) in _strtol_l() 134 *endptr = (char *) nptr; in _strtol_l() 206 if (endptr != 0) in _strtol_l() 207 *endptr = (char *) (any ? (char *)s - 1 : nptr); in _strtol_l()
|
D | wcstoumax.c | 57 wchar_t ** __restrict endptr, int base, locale_t loc) in wcstoumax_l() argument 125 if (endptr != NULL) in wcstoumax_l() 126 *endptr = (wchar_t *)(any ? s - 1 : nptr); in wcstoumax_l() 131 wcstoumax(const wchar_t* __restrict nptr, wchar_t** __restrict endptr, int base) in wcstoumax() argument 133 return wcstoumax_l(nptr, endptr, base, __get_current_locale()); in wcstoumax()
|
D | wcstoimax.c | 58 wchar_t ** __restrict endptr, int base, locale_t loc) in wcstoimax_l() argument 127 if (endptr != NULL) in wcstoimax_l() 128 *endptr = (wchar_t *)(any ? s - 1 : nptr); in wcstoimax_l() 133 wcstoimax(const wchar_t* __restrict nptr, wchar_t** __restrict endptr, int base) in wcstoimax() argument 135 return wcstoimax_l(nptr, endptr, base, __get_current_locale()); in wcstoimax()
|
D | strtoul.c | 130 strtoul_l (const char *__restrict nptr, char **__restrict endptr, int base, in strtoul_l() argument 184 if (endptr != 0) in strtoul_l() 185 *endptr = (char *) (any ? (char *)s - 1 : nptr); in strtoul_l()
|
D | strtoull.c | 127 char **__restrict endptr, int base, locale_t loc) in _strtoull_l() argument 180 if (endptr != 0) in _strtoull_l() 181 *endptr = (char *) (any ? (char *)s - 1 : nptr); in _strtoull_l()
|
D | strtoll.c | 131 char **__restrict endptr, int base, locale_t loc) in _strtoll_l() argument 205 if (endptr != 0) in _strtoll_l() 206 *endptr = (char *) (any ? (char *)s - 1 : nptr); in _strtoll_l()
|
D | wcstol.c | 130 wcstol_l (const wchar_t *nptr, wchar_t **endptr, in wcstol_l() argument 205 if (endptr != 0) in wcstol_l() 206 *endptr = (wchar_t *) (any ? s - 1 : nptr); in wcstol_l()
|
D | wcstoll.c | 131 wcstoll_l (const wchar_t *nptr, wchar_t **endptr, in wcstoll_l() argument 206 if (endptr != 0) in wcstoll_l() 207 *endptr = (wchar_t *) (any ? s - 1 : nptr); in wcstoll_l()
|
D | wcstoul.c | 131 wcstoul_l (const wchar_t *nptr, wchar_t **endptr, in wcstoul_l() argument 185 if (endptr != 0) in wcstoul_l() 186 *endptr = (wchar_t *) (any ? s - 1 : nptr); in wcstoul_l()
|
D | wcstoull.c | 143 wcstoull_l (const wchar_t *nptr, wchar_t **endptr, in wcstoull_l() argument 201 if (endptr != 0) in wcstoull_l() 202 *endptr = (wchar_t *) (any ? s - 1 : nptr); in wcstoull_l()
|
D | strtod.c | 1292 strtold (const char * nptr, char ** endptr) 1294 return (long double) strtod(nptr, endptr);
|
/picolibc-latest/newlib/libc/tinystdio/ |
D | strtod.c | 67 strtod (const char * nptr, char ** endptr) in strtod() argument 81 if (endptr) in strtod() 82 *endptr = (char *) nptr + len; in strtod() 94 strtold (const char * nptr, char ** endptr) in strtold() argument 96 return (long double) strtod(nptr, endptr); in strtold()
|
D | strtof.c | 66 strtof (const char * nptr, char ** endptr) in strtof() argument 80 if (endptr) in strtof() 81 *endptr = (char *) nptr + len; in strtof()
|
D | strtold.c | 68 strtold (const char * nptr, char ** endptr) in strtold() argument 82 if (endptr) in strtold() 83 *endptr = (char *) nptr + len; in strtold()
|
D | strtoi.h | 41 strtoi(const char *__restrict nptr, char **__restrict endptr, int ibase) in strtoi() argument 48 if (endptr) in strtoi() 49 *endptr = (char *) nptr; in strtoi() 133 if (endptr != NULL) in strtoi() 134 *endptr = (char *) nptr; in strtoi()
|
D | strtod_l.c | 56 strtold_l (const char * nptr, char ** endptr, locale_t loc) in strtold_l() argument 59 return (long double) strtod_l(nptr, endptr, loc); in strtold_l()
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 6120 endptr position if the decimal point is a multibyte char.
|