Searched refs:thousands_sep_len (Results 1 - 2 of 2) sorted by relevance
/third_party/python/Objects/stringlib/ |
H A D | localeutil.h | 49 PyObject *thousands_sep, Py_ssize_t thousands_sep_len, in InsertThousandsGrouping_fill() 62 *buffer_pos -= thousands_sep_len; in InsertThousandsGrouping_fill() 67 thousands_sep_len); in InsertThousandsGrouping_fill() 46 InsertThousandsGrouping_fill(_PyUnicodeWriter *writer, Py_ssize_t *buffer_pos, PyObject *digits, Py_ssize_t *digits_pos, Py_ssize_t n_chars, Py_ssize_t n_zeros, PyObject *thousands_sep, Py_ssize_t thousands_sep_len, Py_UCS4 *maxchar) InsertThousandsGrouping_fill() argument
|
/third_party/python/Objects/ |
H A D | unicodeobject.c | 9545 const Py_ssize_t thousands_sep_len = PyUnicode_GET_LENGTH(thousands_sep); in _PyUnicode_InsertThousandsGrouping() local 9549 assert(!(grouping[0] == CHAR_MAX && thousands_sep_len != 0)); in _PyUnicode_InsertThousandsGrouping() 9573 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars; in _PyUnicode_InsertThousandsGrouping() 9580 thousands_sep_len, maxchar); in _PyUnicode_InsertThousandsGrouping() 9592 min_width -= thousands_sep_len; in _PyUnicode_InsertThousandsGrouping() 9602 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars; in _PyUnicode_InsertThousandsGrouping() 9609 thousands_sep_len, maxchar); in _PyUnicode_InsertThousandsGrouping()
|
Completed in 19 milliseconds