Searched refs:thousands_sep (Results 1 – 3 of 3) sorted by relevance
/coreutils/gl/lib/ |
D | strnumcmp-in.h | 115 int decimal_point, int thousands_sep) in numcompare() argument 127 while (tmpa == NUMERIC_ZERO || tmpa == thousands_sep); in numcompare() 136 while (tmpb == NUMERIC_ZERO || tmpb == thousands_sep) in numcompare() 146 while (tmpb == NUMERIC_ZERO || tmpb == thousands_sep); in numcompare() 152 while (tmpa == thousands_sep); in numcompare() 155 while (tmpb == thousands_sep); in numcompare() 167 while (tmpa == thousands_sep); in numcompare() 172 while (tmpb == thousands_sep); in numcompare() 186 while (tmpb == NUMERIC_ZERO || tmpb == thousands_sep); in numcompare() 193 while (tmpa == NUMERIC_ZERO || tmpa == thousands_sep) in numcompare() [all …]
|
D | strnumcmp.c | 28 int decimal_point, int thousands_sep) in strnumcmp() argument 30 return numcompare (a, b, decimal_point, thousands_sep); in strnumcmp()
|
/coreutils/src/ |
D | sort.c | 156 static int thousands_sep; variable 1932 ends_with_thousands_sep = (*p == thousands_sep); in traverse_raw_number() 1988 return (diff ? diff : strnumcmp (a, b, decimal_point, thousands_sep)); in human_numcompare() 2004 return strnumcmp (a, b, decimal_point, thousands_sep); in numcompare() 2527 ? thousands_sep != NON_CHAR && (isblank (to_uchar (thousands_sep))) in key_warnings() 2528 : tab == thousands_sep) in key_warnings() 2533 quote (((char []) {thousands_sep, 0}))); in key_warnings() 2540 ? thousands_sep != NON_CHAR && (isblank (to_uchar (decimal_point))) in key_warnings() 4319 thousands_sep = locale->thousands_sep[0]; in main() 4320 if (thousands_sep && locale->thousands_sep[1]) in main() [all …]
|