Lines Matching defs:p_unicode
1998 unicode_resize(PyObject **p_unicode, Py_ssize_t length)
2003 assert(p_unicode != NULL);
2004 unicode = *p_unicode;
2019 Py_SETREF(*p_unicode, empty);
2027 Py_SETREF(*p_unicode, copy);
2035 *p_unicode = new_unicode;
2042 PyUnicode_Resize(PyObject **p_unicode, Py_ssize_t length)
2045 if (p_unicode == NULL) {
2049 unicode = *p_unicode;
2055 return unicode_resize(p_unicode, length);
2528 case: create a new string with of the right kind. Write NULL into *p_unicode
2531 unicode_adjust_maxchar(PyObject **p_unicode)
2538 assert(p_unicode != NULL);
2539 unicode = *p_unicode;
2571 *p_unicode = copy;