Searched refs:thousands_sep_len (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython3/Objects/stringlib/
H A Dlocaleutil.h51 Py_ssize_t thousands_sep_len)
56 *buffer_end -= thousands_sep_len;
60 thousands_sep_len * STRINGLIB_SIZEOF_CHAR);
111 Py_ssize_t thousands_sep_len)
143 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars;
148 use_separator ? thousands_sep : NULL, thousands_sep_len);
161 min_width -= thousands_sep_len;
171 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars;
175 use_separator ? thousands_sep : NULL, thousands_sep_len);
49 fill(STRINGLIB_CHAR **digits_end, STRINGLIB_CHAR **buffer_end, Py_ssize_t n_chars, Py_ssize_t n_zeros, STRINGLIB_CHAR* thousands_sep, Py_ssize_t thousands_sep_len) argument
103 InsertThousandsGrouping( STRINGLIB_CHAR *buffer, Py_ssize_t n_buffer, STRINGLIB_CHAR *digits, Py_ssize_t n_digits, Py_ssize_t min_width, const char *grouping, STRINGLIB_CHAR *thousands_sep, Py_ssize_t thousands_sep_len) argument
/external/python/cpython2/Objects/stringlib/
H A Dlocaleutil.h53 Py_ssize_t thousands_sep_len)
60 *buffer_end -= thousands_sep_len;
66 for (i = 0; i < thousands_sep_len; ++i)
70 memcpy(*buffer_end, thousands_sep, thousands_sep_len);
131 Py_ssize_t thousands_sep_len = strlen(thousands_sep); local
152 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars;
157 use_separator ? thousands_sep : NULL, thousands_sep_len);
170 min_width -= thousands_sep_len;
180 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars;
184 use_separator ? thousands_sep : NULL, thousands_sep_len);
51 fill(STRINGLIB_CHAR **digits_end, STRINGLIB_CHAR **buffer_end, Py_ssize_t n_chars, Py_ssize_t n_zeros, const char* thousands_sep, Py_ssize_t thousands_sep_len) argument
[all...]
/external/python/cpython3/Objects/
H A Dunicodeobject.c9334 Py_ssize_t thousands_sep_len; local
9347 thousands_sep_len = PyUnicode_GET_LENGTH(thousands_sep);
9367 (Py_UCS1 *) thousands_sep_data, thousands_sep_len);
9372 (Py_UCS1 *) thousands_sep_data, thousands_sep_len);
9378 (Py_UCS2 *) thousands_sep_data, thousands_sep_len);
9384 (Py_UCS4 *) thousands_sep_data, thousands_sep_len);

Completed in 134 milliseconds