Searched defs:n_zeros (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Objects/stringlib/
H A Dlocaleutil.h56 Py_ssize_t n_chars, Py_ssize_t n_zeros, const char* thousands_sep,
82 *buffer_end -= n_zeros;
83 STRINGLIB_FILL(*buffer_end, '0', n_zeros);
126 Py_ssize_t n_zeros; local
150 n_zeros = MAX(0, l - remaining);
156 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars;
160 fill(&digits_end, &buffer_end, n_chars, n_zeros,
180 n_zeros = MAX(0, l - remaining);
184 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars;
187 fill(&digits_end, &buffer_end, n_chars, n_zeros,
55 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...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/stringlib/
H A Dlocaleutil.h67 Py_ssize_t n_chars, Py_ssize_t n_zeros, const char* thousands_sep,
93 *buffer_end -= n_zeros;
94 STRINGLIB_FILL(*buffer_end, '0', n_zeros);
137 Py_ssize_t n_zeros; local
161 n_zeros = MAX(0, l - remaining);
167 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars;
171 fill(&digits_end, &buffer_end, n_chars, n_zeros,
191 n_zeros = MAX(0, l - remaining);
195 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars;
198 fill(&digits_end, &buffer_end, n_chars, n_zeros,
66 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...]

Completed in 301 milliseconds