| /src/external/lgpl3/gmp/dist/tests/misc/ |
| t-locale.c | 20 #define _GNU_SOURCE /* for DECIMAL_POINT in glibc langinfo.h */ 43 const char *decimal_point; variable 54 l.decimal_point = (char *) decimal_point; 67 #if defined (DECIMAL_POINT) 68 if (n == DECIMAL_POINT) 69 return (char *) decimal_point; 73 return (char *) decimal_point; 113 decimal_point = (const char *) point[i]; 120 sprintf (str+strlen(str), data[j].str, decimal_point); [all...] |
| /src/include/ |
| locale.h | 40 char *decimal_point; member in struct:lconv
|
| /src/lib/libc/stdlib/ |
| strfmon.c | 542 const char *decimal_point; local 550 decimal_point = lc->mon_decimal_point; 551 if (*decimal_point == '\0') 552 decimal_point = lc->decimal_point; 557 decimal_point_size = strlen(decimal_point); 606 memcpy(bufend, decimal_point, decimal_point_size);
|
| /src/sys/sys/ |
| localedef.h | 68 const char *decimal_point; member in struct:__anon7614
|
| /src/usr.bin/seq/ |
| seq.c | 57 const char *decimal_point = "."; /* default */ variable 80 p = strstr(number, decimal_point); 120 if (locale && locale->decimal_point && locale->decimal_point[0] != '\0') 121 decimal_point = locale->decimal_point; 255 decimal_pt_len = strlen(decimal_point); 259 strncmp(s, decimal_point, decimal_pt_len) == 0) { 465 if ((dp = strstr(number, decimal_point))) { 466 dp += strlen(decimal_point); [all...] |
| /src/external/lgpl3/mpfr/dist/src/ |
| strtofr.c | 237 int decimal_point; local 239 decimal_point = (unsigned char) MPFR_DECIMAL_POINT; 343 decimal_point uses this convention too. */ 344 if (c == '.' || c == decimal_point)
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ |
| floating_to_chars.cc | 1693 char* const decimal_point = &buffer_start[sign + 1]; local 1694 __glibcxx_assert(*decimal_point == '.'); 1695 memmove(decimal_point, decimal_point+1, 1698 decimal_point[scientific_exponent] = '.'; 1722 char* decimal_point = nullptr; local 1724 decimal_point = &buffer_start[sign + 1]; 1726 decimal_point 1728 __glibcxx_assert(*decimal_point == '.'); 1730 char* const fractional_part_start = decimal_point + 1 [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/ |
| floating_to_chars.cc | 1501 char* const decimal_point = &buffer_start[sign + 1]; local 1502 __glibcxx_assert(*decimal_point == '.'); 1503 memmove(decimal_point, decimal_point+1, 1506 decimal_point[scientific_exponent] = '.'; 1530 char* decimal_point = nullptr; local 1532 decimal_point = &buffer_start[sign + 1]; 1534 decimal_point 1536 __glibcxx_assert(*decimal_point == '.'); 1538 char* const fractional_part_start = decimal_point + 1 [all...] |
| /src/external/bsd/top/dist/ |
| ap_snprintf.c | 506 int decimal_point; local 510 p = ap_fcvt(num, precision, &decimal_point, is_negative, buf1); 512 p = ap_ecvt(num, precision + 1, &decimal_point, is_negative, buf1); 524 if (decimal_point <= 0) { 528 while (decimal_point++ < 0) 535 while (decimal_point-- > 0) 559 decimal_point--; 560 if (decimal_point != 0) { 561 p = conv_10((wide_int) decimal_point, FALSE, &exponent_is_negative,
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| locale_facets.h | 1744 decimal_point() const function in class:numpunct 2089 * The decimal point character used is numpunct::decimal_point(). 2387 * The decimal point character used is numpunct::decimal_point(). 2453 * The decimal point character used is numpunct::decimal_point().
|
| locale_facets_nonio.h | 1135 decimal_point() const function in class:moneypunct
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/fast_float/ |
| fast_float.h | 53 : format(fmt), decimal_point(dot) {} 58 char decimal_point; member in struct:fast_float::parse_options 626 const char decimal_point = options.decimal_point; variable 637 if (!is_integer(*p) && (*p != decimal_point)) { // a sign must be followed by an integer or the dot 656 if ((p != pend) && (*p == decimal_point)) { 725 while ((start != pend) && (*start == '0' || *start == decimal_point)) { 2317 const char decimal_point = options.decimal_point; 2328 if (!is_integer(*p) && (*p != decimal_point)) { // a sign must be followed by an integer or the do [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| locale_facets.h | 1744 decimal_point() const function in class:numpunct 2086 * The decimal point character used is numpunct::decimal_point(). 2381 * The decimal point character used is numpunct::decimal_point(). 2444 * The decimal point character used is numpunct::decimal_point().
|
| locale_facets_nonio.h | 1135 decimal_point() const function in class:moneypunct
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/fast_float/ |
| fast_float.h | 53 : format(fmt), decimal_point(dot) {} 58 char decimal_point; member in struct:fast_float::parse_options 594 const char decimal_point = options.decimal_point; variable 605 if (!is_integer(*p) && (*p != decimal_point)) { // a sign must be followed by an integer or the dot 628 if ((p != pend) && (*p == decimal_point)) { 697 while ((start != pend) && (*start == '0' || *start == decimal_point)) { 2289 const char decimal_point = options.decimal_point; 2300 if (!is_integer(*p) && (*p != decimal_point)) { // a sign must be followed by an integer or the do [all...] |
| /src/lib/libc/stdio/ |
| vfwprintf.c | 648 char *decimal_point; /* locale specific decimal point */ local 827 decimal_point = localeconv_l(loc)->decimal_point; 1456 PRINT(decimal_point, 1); 1483 buf[0] = *decimal_point; 1492 buf[1] = *decimal_point;
|
| /src/external/gpl2/groff/dist/src/roff/troff/ |
| env.cpp | 3190 int decimal_point = power5 > power2 ? power5 : power2; local 3191 if (decimal_point <= 10) { 3194 for (t = decimal_point - power2; --t >= 0;) 3196 for (t = decimal_point - power5; --t >= 0;) 3199 return if_to_a(sp*factor, decimal_point); 3205 int decimal_point = 0; local 3212 } while (++decimal_point < 10); 3213 return if_to_a(int(val), decimal_point);
|