Lines Matching defs:old_length
1008 unicode_fill_invalid(PyObject *unicode, Py_ssize_t old_length)
1013 if (length <= old_length)
1015 memset(data + old_length * kind, 0xff, (length - old_length) * kind);
1028 Py_ssize_t old_length = _PyUnicode_LENGTH(unicode);
1082 unicode_fill_invalid(unicode, old_length);
1103 Py_ssize_t old_length = _PyUnicode_LENGTH(unicode);
1141 unicode_fill_invalid(unicode, old_length);
2001 Py_ssize_t old_length;
2011 old_length = PyUnicode_WSTR_LENGTH(unicode);
2013 old_length = PyUnicode_GET_LENGTH(unicode);
2014 if (old_length == length)