Searched refs:_PyUnicodeWriter_Prepare (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Python/ |
D | formatter_unicode.c | 838 if (_PyUnicodeWriter_Prepare(writer, total, maxchar) == -1) in format_string_internal() 1021 if (_PyUnicodeWriter_Prepare(writer, n_total, maxchar) == -1) in format_long_internal() 1171 if (_PyUnicodeWriter_Prepare(writer, n_total, maxchar) == -1) in format_float_internal() 1381 if (_PyUnicodeWriter_Prepare(writer, total, maxchar) == -1) in format_complex_internal()
|
/external/python/cpython3/Include/cpython/ |
D | unicodeobject.h | 483 #define _PyUnicodeWriter_Prepare(WRITER, LENGTH, MAXCHAR) \ macro
|
/external/python/cpython3/Modules/cjkcodecs/ |
D | cjkcodecs.h | 167 if (_PyUnicodeWriter_Prepare(writer, 2, Py_MAX(_c1, c2)) < 0) \
|
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 2530 if (_PyUnicodeWriter_Prepare(writer, arglen, maxchar) == -1) in unicode_fromformat_write_str() 2813 if (_PyUnicodeWriter_Prepare(writer, width, 127) == -1) in unicode_fromformat_arg() 4405 if (_PyUnicodeWriter_Prepare(writer, writer->min_length - writer->pos, in unicode_decode_call_errorhandler_writer() 5533 if (_PyUnicodeWriter_Prepare(&writer, writer.min_length, 127) == -1) in PyUnicode_DecodeUTF32Stateful() 5845 if (_PyUnicodeWriter_Prepare(&writer, writer.min_length, 127) == -1) in PyUnicode_DecodeUTF16Stateful() 6157 if (_PyUnicodeWriter_Prepare(&writer, size, 127) < 0) { in _PyUnicode_DecodeUnicodeEscapeInternal() 6556 if (_PyUnicodeWriter_Prepare(&writer, size, 127) < 0) { in _PyUnicode_DecodeRawUnicodeEscapeStateful() 7926 if (_PyUnicodeWriter_Prepare(writer, 1, 0xff) == -1) in charmap_decode_string() 8122 if (_PyUnicodeWriter_Prepare(&writer, writer.min_length, 127) == -1) in PyUnicode_DecodeCharmap() 8996 if (_PyUnicodeWriter_Prepare(&writer, size, 127) == -1) in _PyUnicode_TranslateCharmap() [all …]
|
D | longobject.c | 2014 if (_PyUnicodeWriter_Prepare(writer, size, '9') == -1) { in pylong_int_to_decimal_string() 2183 if (_PyUnicodeWriter_Prepare(writer, strlen, '9') == -1) { in long_to_decimal_string_internal() 2356 if (_PyUnicodeWriter_Prepare(writer, sz, 'x') == -1) in long_format_binary()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.13.0a2.rst | 1429 * _PyUnicodeWriter_Prepare()
|