Lines Matching refs:thousands
368 , const char *decimal, size_t decimal_len, const char *thousands in str_to_mpn() argument
416 if (thousands != NULL && *str == *thousands in str_to_mpn()
417 && ({ for (inner = 1; thousands[inner] != '\0'; ++inner) in str_to_mpn()
418 if (thousands[inner] != str[inner]) in str_to_mpn()
420 thousands[inner] == '\0'; })) in str_to_mpn()
551 wchar_t thousands = L'\0'; in ____STRTOF_INTERNAL() local
553 const char *thousands = NULL; in ____STRTOF_INTERNAL() local
572 thousands = _NL_CURRENT_WORD (LC_NUMERIC, in ____STRTOF_INTERNAL()
574 if (thousands == L'\0') in ____STRTOF_INTERNAL()
577 thousands = _NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP); in ____STRTOF_INTERNAL()
578 if (*thousands == '\0') in ____STRTOF_INTERNAL()
580 thousands = NULL; in ____STRTOF_INTERNAL()
705 while (c == L'0' || ((wint_t) thousands != L'\0' && c == (wint_t) thousands)) in ____STRTOF_INTERNAL()
708 if (__glibc_likely (thousands == NULL)) in ____STRTOF_INTERNAL()
718 for (cnt = 0; thousands[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
719 if (thousands[cnt] != cp[cnt]) in ____STRTOF_INTERNAL()
721 if (thousands[cnt] != '\0') in ____STRTOF_INTERNAL()
757 tp = __correctly_grouped_prefixwc (start_of_digits, cp, thousands, in ____STRTOF_INTERNAL()
760 tp = __correctly_grouped_prefixmb (start_of_digits, cp, thousands, in ____STRTOF_INTERNAL()
783 if (__builtin_expect ((wint_t) thousands == L'\0', 1) in ____STRTOF_INTERNAL()
784 || c != (wint_t) thousands) in ____STRTOF_INTERNAL()
788 if (__glibc_likely (thousands == NULL)) in ____STRTOF_INTERNAL()
792 for (cnt = 0; thousands[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
793 if (thousands[cnt] != cp[cnt]) in ____STRTOF_INTERNAL()
795 if (thousands[cnt] != '\0') in ____STRTOF_INTERNAL()
808 tp = __correctly_grouped_prefixwc (start_of_digits, cp, thousands, in ____STRTOF_INTERNAL()
811 tp = __correctly_grouped_prefixmb (start_of_digits, cp, thousands, in ____STRTOF_INTERNAL()
1200 , decimal, decimal_len, thousands in ____STRTOF_INTERNAL()
1451 , decimal, decimal_len, thousands in ____STRTOF_INTERNAL()