Searched refs:thousands (Results 1 - 4 of 4) sorted by relevance

/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dgrouping.h35 wchar_t thousands,
37 const char *thousands,
50 thousands_len = strlen (thousands);
62 if (*cp == thousands)
65 if (cp[thousands_len - 1] == *thousands)
67 for (cnt = 1; thousands[cnt] != '\0'; ++cnt)
68 if (thousands[cnt] != cp[thousands_len - 1 - cnt])
70 if (thousands[cnt] == '\0')
92 /* CP points to a thousands separator character. The preceding
107 /* Skip the thousands separato
33 correctly_grouped_prefix(const STRING_TYPE *begin, const STRING_TYPE *end, wchar_t thousands, const char *grouping) argument
[all...]
H A Dstrtol.c249 /* The thousands character of the current locale. */
251 wchar_t thousands = L'\0'; variable
253 const char *thousands = NULL; variable
267 /* Figure out the thousands separator character. */
270 thousands = _NL_CURRENT_WORD (LC_NUMERIC,
273 if (thousands == L'\0')
277 thousands = _NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP);
279 if (*thousands == '\0')
281 thousands = NULL;
339 thousands_len = strlen (thousands);
[all...]
H A Dstrtod.c307 , const char *decimal, size_t decimal_len, const char *thousands
343 /* There might be thousands separators or radix characters in
354 if (thousands != NULL && *str == *thousands
355 && ({ for (inner = 1; thousands[inner] != '\0'; ++inner)
356 if (thousands[inner] != str[inner])
358 thousands[inner] == '\0'; }))
481 /* The thousands character of the current locale. */
483 wchar_t thousands = L'\0'; variable
485 const char *thousands variable
[all...]
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dvfscanf.c291 /* The thousands character of the current locale. */
293 wchar_t thousands; local
295 const char *thousands; local
356 /* Figure out the thousands separator character. */
358 thousands = _NL_CURRENT_WORD (LC_NUMERIC, _NL_NUMERIC_THOUSANDS_SEP_WC);
360 thousands = _NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP);
361 if (*thousands == '\0')
362 thousands = NULL;
1370 && thousands != L'\0'
1372 && thousands !
[all...]

Completed in 74 milliseconds