Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/stringlib/
Dlocaleutil.h49 STRINGLIB(fill)(STRINGLIB_CHAR **digits_end, STRINGLIB_CHAR **buffer_end, in STRINGLIB()
64 *digits_end -= n_chars; in STRINGLIB()
65 memcpy(*buffer_end, *digits_end, n_chars * sizeof(STRINGLIB_CHAR)); in STRINGLIB()
120 STRINGLIB_CHAR *digits_end = NULL; in STRINGLIB() local
132 digits_end = digits + n_digits; in STRINGLIB()
147 STRINGLIB(fill)(&digits_end, &buffer_end, n_chars, n_zeros, in STRINGLIB()
174 STRINGLIB(fill)(&digits_end, &buffer_end, n_chars, n_zeros, in STRINGLIB()
/external/python/cpython2/Objects/stringlib/
Dlocaleutil.h51 fill(STRINGLIB_CHAR **digits_end, STRINGLIB_CHAR **buffer_end, in fill() argument
75 *digits_end -= n_chars; in fill()
76 memcpy(*buffer_end, *digits_end, n_chars * sizeof(STRINGLIB_CHAR)); in fill()
128 STRINGLIB_CHAR *digits_end = NULL; in _Py_InsertThousandsGrouping() local
141 digits_end = digits + n_digits; in _Py_InsertThousandsGrouping()
156 fill(&digits_end, &buffer_end, n_chars, n_zeros, in _Py_InsertThousandsGrouping()
183 fill(&digits_end, &buffer_end, n_chars, n_zeros, in _Py_InsertThousandsGrouping()
/external/python/cpython2/Python/
Dpystrtod.c945 char *digits, *digits_end; in format_float_short() local
954 &digits_end); in format_float_short()
963 assert(digits_end != NULL && digits_end >= digits); in format_float_short()
964 digits_len = digits_end - digits; in format_float_short()
/external/python/cpython3/Python/
Dpystrtod.c1000 char *digits, *digits_end; in format_float_short() local
1009 &digits_end); in format_float_short()
1018 assert(digits_end != NULL && digits_end >= digits); in format_float_short()
1019 digits_len = digits_end - digits; in format_float_short()