Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/stringlib/
Dlocaleutil.h124 int use_separator = 0; /* First time through, don't append the in _Py_InsertThousandsGrouping() local
152 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars; in _Py_InsertThousandsGrouping()
157 use_separator ? thousands_sep : NULL, thousands_sep_len); in _Py_InsertThousandsGrouping()
161 use_separator = 1; in _Py_InsertThousandsGrouping()
180 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars; in _Py_InsertThousandsGrouping()
184 use_separator ? thousands_sep : NULL, thousands_sep_len); in _Py_InsertThousandsGrouping()
/external/python/cpython3/Objects/
Dunicodeobject.c9390 int use_separator = 0; /* First time through, don't append the in _PyUnicode_InsertThousandsGrouping() local
9431 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars; in _PyUnicode_InsertThousandsGrouping()
9437 use_separator ? thousands_sep : NULL, in _PyUnicode_InsertThousandsGrouping()
9441 use_separator = 1; in _PyUnicode_InsertThousandsGrouping()
9460 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars; in _PyUnicode_InsertThousandsGrouping()
9466 use_separator ? thousands_sep : NULL, in _PyUnicode_InsertThousandsGrouping()