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.c9590 int use_separator = 0; /* First time through, don't append the in _PyUnicode_InsertThousandsGrouping() local
9631 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars; in _PyUnicode_InsertThousandsGrouping()
9637 use_separator ? thousands_sep : NULL, in _PyUnicode_InsertThousandsGrouping()
9641 use_separator = 1; in _PyUnicode_InsertThousandsGrouping()
9660 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars; in _PyUnicode_InsertThousandsGrouping()
9666 use_separator ? thousands_sep : NULL, in _PyUnicode_InsertThousandsGrouping()