Searched refs:decimal_point (Results 1 – 16 of 16) sorted by relevance
/picolibc-latest/newlib/libc/stdlib/ |
D | wcstod.c | 193 const char *decimal_point = __get_numeric_locale(loc)->decimal_point; in wcstod_l() local 204 len = strlen (decimal_point); in wcstod_l() 206 char *d = strstr (buf, decimal_point); in wcstod_l() 265 const char *decimal_point = __get_numeric_locale(loc)->decimal_point; in wcstof_l() local 276 len = strlen (decimal_point); in wcstof_l() 278 char *d = strstr (buf, decimal_point); in wcstof_l()
|
D | wcstold.c | 88 const char *decimal_point = __get_numeric_locale(loc)->decimal_point; in wcstold_l() 99 len = strlen (decimal_point); in wcstold_l() 102 char *d = strstr (buf, decimal_point); in wcstold_l()
|
D | strtod.c | 266 const char *decimal_point = __get_numeric_locale(loc)->decimal_point; local 267 const int dec_len = strlen (decimal_point); 269 const char *decimal_point = "."; local 358 if (strncmp (s, decimal_point, dec_len) == 0)
|
D | strtodg.c | 452 const char *decimal_point = __get_numeric_locale(loc)->decimal_point; in _strtodg_l() local 453 int dec_len = strlen (decimal_point); in _strtodg_l() 512 if (strncmp (s, decimal_point, dec_len) == 0) in _strtodg_l()
|
D | gdtoa-gethex.c | 160 __get_numeric_locale(loc)->decimal_point; in gethex()
|
/picolibc-latest/newlib/libc/stdio/ |
D | nano-vfprintf_float.c | 171 char *decimal_point = localeconv ()->decimal_point; in _printf_float() local 172 size_t decp_len = strlen (decimal_point); in _printf_float() 307 PRINT (decimal_point, decp_len); in _printf_float() 316 PRINT (decimal_point, decp_len); in _printf_float() 327 PRINT (decimal_point, decp_len); in _printf_float() 338 PRINT (decimal_point, decp_len); in _printf_float()
|
D | vfwprintf.c | 388 wchar_t decimal_point; in VFWPRINTF() local 436 decimal_point = *__get_current_numeric_locale ()->wdecimal_point; in VFWPRINTF() 442 nconv = mbrtowc (&decimal_point, in VFWPRINTF() 443 localeconv ()->decimal_point, in VFWPRINTF() 446 decimal_point = L'.'; in VFWPRINTF() 450 decimal_point = (wchar_t) *localeconv ()->decimal_point; in VFWPRINTF() 1436 PRINT (&decimal_point, 1); in VFWPRINTF() 1442 PRINT (&decimal_point, 1); in VFWPRINTF() 1470 PRINT (&decimal_point, 1); in VFWPRINTF() 1479 PRINT (&decimal_point, 1); in VFWPRINTF()
|
D | vfprintf.c | 416 char *decimal_point = localeconv ()->decimal_point; in VFPRINTF() local 417 size_t decp_len = strlen (decimal_point); in VFPRINTF() 1458 PRINT (decimal_point, decp_len); in VFPRINTF() 1464 PRINT (decimal_point, decp_len); in VFPRINTF() 1492 PRINT (decimal_point, decp_len); in VFPRINTF() 1500 PRINT (decimal_point, decp_len); in VFPRINTF()
|
D | vfwscanf.c | 483 localeconv ()->decimal_point, in _SVFWSCANF() 490 decpt = (wchar_t) *localeconv ()->decimal_point; in _SVFWSCANF()
|
D | vfscanf.c | 1542 const char *decpt = localeconv ()->decimal_point; in _SVFSCANF()
|
/picolibc-latest/newlib/libc/locale/ |
D | localeconv.c | 45 lconv->decimal_point = (char *) n->decimal_point; in __localeconv_l()
|
D | setlocale.h | 99 const char *decimal_point; member
|
D | nl_langinfo.c | 252 ret = (char*) __get_numeric_locale (locale)->decimal_point; in nl_langinfo_l()
|
D | locale.tex | 48 @item char *decimal_point
|
/picolibc-latest/newlib/libc/include/ |
D | locale.h | 60 char *decimal_point; member
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 2054 * libc/stdio/vfwscanf.c (__SVFWSCANF_R): Fix fetching decimal_point in
|