Lines Matching refs:decimal

368 	    , const char *decimal, size_t decimal_len, const char *thousands  in str_to_mpn()  argument
544 wchar_t decimal; in ____STRTOF_INTERNAL() local
546 const char *decimal; in ____STRTOF_INTERNAL() local
591 decimal = _NL_CURRENT_WORD (LC_NUMERIC, _NL_NUMERIC_DECIMAL_POINT_WC); in ____STRTOF_INTERNAL()
592 assert (decimal != L'\0'); in ____STRTOF_INTERNAL()
595 decimal = _NL_CURRENT (LC_NUMERIC, DECIMAL_POINT); in ____STRTOF_INTERNAL()
596 decimal_len = strlen (decimal); in ____STRTOF_INTERNAL()
625 if (c == (wint_t) decimal in ____STRTOF_INTERNAL()
632 for (cnt = 0; decimal[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
633 if (cp[cnt] != decimal[cnt]) in ____STRTOF_INTERNAL()
635 if (decimal[cnt] == '\0' && cp[cnt] >= '0' && cp[cnt] <= '9') in ____STRTOF_INTERNAL()
737 c == (wint_t) decimal in ____STRTOF_INTERNAL()
739 ({ for (cnt = 0; decimal[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
740 if (decimal[cnt] != cp[cnt]) in ____STRTOF_INTERNAL()
742 decimal[cnt] == '\0'; }) in ____STRTOF_INTERNAL()
853 c == (wint_t) decimal in ____STRTOF_INTERNAL()
855 ({ for (cnt = 0; decimal[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
856 if (decimal[cnt] != cp[cnt]) in ____STRTOF_INTERNAL()
858 decimal[cnt] == '\0'; }) in ____STRTOF_INTERNAL()
1052 while (*startp != decimal) in ____STRTOF_INTERNAL()
1057 if (*startp == decimal[0]) in ____STRTOF_INTERNAL()
1059 for (cnt = 1; decimal[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
1060 if (decimal[cnt] != startp[cnt]) in ____STRTOF_INTERNAL()
1062 if (decimal[cnt] == '\0') in ____STRTOF_INTERNAL()
1200 , decimal, decimal_len, thousands in ____STRTOF_INTERNAL()
1451 , decimal, decimal_len, thousands in ____STRTOF_INTERNAL()