Lines Matching refs:right_len
11744 Py_ssize_t left_len, right_len, new_len; in PyUnicode_Concat() local
11768 right_len = PyUnicode_GET_LENGTH(right); in PyUnicode_Concat()
11769 if (left_len > PY_SSIZE_T_MAX - right_len) { in PyUnicode_Concat()
11774 new_len = left_len + right_len; in PyUnicode_Concat()
11785 _PyUnicode_FastCopyCharacters(result, left_len, right, 0, right_len); in PyUnicode_Concat()
11795 Py_ssize_t left_len, right_len, new_len; in PyUnicode_Append() local
11828 right_len = PyUnicode_GET_LENGTH(right); in PyUnicode_Append()
11829 if (left_len > PY_SSIZE_T_MAX - right_len) { in PyUnicode_Append()
11834 new_len = left_len + right_len; in PyUnicode_Append()
11850 _PyUnicode_FastCopyCharacters(*p_left, left_len, right, 0, right_len); in PyUnicode_Append()
11862 _PyUnicode_FastCopyCharacters(res, left_len, right, 0, right_len); in PyUnicode_Append()