Home
last modified time | relevance | path

Searched refs:n_zeros (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Objects/stringlib/
Dlocaleutil.h52 Py_ssize_t n_chars, Py_ssize_t n_zeros, const char* thousands_sep, in fill() argument
78 *buffer_end -= n_zeros; in fill()
79 STRINGLIB_FILL(*buffer_end, '0', n_zeros); in fill()
122 Py_ssize_t n_zeros; in _Py_InsertThousandsGrouping() local
146 n_zeros = MAX(0, l - remaining); in _Py_InsertThousandsGrouping()
152 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars; in _Py_InsertThousandsGrouping()
156 fill(&digits_end, &buffer_end, n_chars, n_zeros, in _Py_InsertThousandsGrouping()
176 n_zeros = MAX(0, l - remaining); in _Py_InsertThousandsGrouping()
180 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars; in _Py_InsertThousandsGrouping()
183 fill(&digits_end, &buffer_end, n_chars, n_zeros, in _Py_InsertThousandsGrouping()