Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dunicodeobject.c1808 Py_ssize_t length_wo_surrogates; in _PyUnicode_Ready() local
1894 length_wo_surrogates = _PyUnicode_WSTR_LENGTH(unicode) - num_surrogates; in _PyUnicode_Ready()
1895 if (length_wo_surrogates > PY_SSIZE_T_MAX / 4 - 1) { in _PyUnicode_Ready()
1899 _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC(4 * (length_wo_surrogates + 1)); in _PyUnicode_Ready()
1904 _PyUnicode_LENGTH(unicode) = length_wo_surrogates; in _PyUnicode_Ready()