Lines Matching refs:PyUnicode_MAX_CHAR_VALUE
1076 copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode)); in resize_copy()
1455 && PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to)) in _copy_characters()
1457 const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to); in _copy_characters()
1514 assert (PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to)); in _copy_characters()
1552 const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to); in _copy_characters()
2310 return PyUnicode_MAX_CHAR_VALUE(unicode); in _PyUnicode_FindMaxChar()
2393 copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode)); in _PyUnicode_Copy()
2552 if (PyUnicode_MAX_CHAR_VALUE(str) > writer->maxchar) in unicode_fromformat_write_str()
4057 if (ch > PyUnicode_MAX_CHAR_VALUE(unicode)) { in PyUnicode_WriteChar()
4293 PyUnicode_MAX_CHAR_VALUE(repunicode)) == -1) in unicode_decode_call_errorhandler_writer()
5305 Py_UCS4 maxch = PyUnicode_MAX_CHAR_VALUE(writer.buffer); in PyUnicode_DecodeUTF32Stateful()
9969 maxchar = PyUnicode_MAX_CHAR_VALUE(separator); in _PyUnicode_JoinArray()
10001 item_maxchar = PyUnicode_MAX_CHAR_VALUE(item); in _PyUnicode_JoinArray()
10096 assert(fill_char <= PyUnicode_MAX_CHAR_VALUE(unicode)); in _PyUnicode_FastFill()
10121 if (fill_char > PyUnicode_MAX_CHAR_VALUE(unicode)) { in PyUnicode_Fill()
10161 maxchar = PyUnicode_MAX_CHAR_VALUE(self); in pad()
10482 maxchar = PyUnicode_MAX_CHAR_VALUE(self); in replace()
10483 maxchar_str1 = PyUnicode_MAX_CHAR_VALUE(str1); in replace()
10487 maxchar_str2 = PyUnicode_MAX_CHAR_VALUE(str2); in replace()
11278 maxchar = PyUnicode_MAX_CHAR_VALUE(left); in PyUnicode_Concat()
11279 maxchar2 = PyUnicode_MAX_CHAR_VALUE(right); in PyUnicode_Concat()
11353 maxchar = PyUnicode_MAX_CHAR_VALUE(left); in PyUnicode_Append()
11354 maxchar2 = PyUnicode_MAX_CHAR_VALUE(right); in PyUnicode_Append()
11546 u = PyUnicode_New(j, PyUnicode_MAX_CHAR_VALUE(self)); in unicode_expandtabs_impl()
12529 u = PyUnicode_New(nchars, PyUnicode_MAX_CHAR_VALUE(str)); in unicode_repeat()
13465 writer->maxchar = PyUnicode_MAX_CHAR_VALUE(writer->buffer); in _PyUnicodeWriter_Update()
13625 maxchar = PyUnicode_MAX_CHAR_VALUE(str); in _PyUnicodeWriter_WriteStr()
13665 if (PyUnicode_MAX_CHAR_VALUE(str) > writer->maxchar) in _PyUnicodeWriter_WriteSubstring()
14793 if (PyUnicode_MAX_CHAR_VALUE(str) > maxchar) { in unicode_format_arg_output()
15075 if (PyUnicode_MAX_CHAR_VALUE(unicode) < 128) in unicode_subtype_new()