Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dunicodeobject.c11791 PyUnicode_Append(PyObject **p_left, PyObject *right) in PyUnicode_Append() argument
11797 if (p_left == NULL) { in PyUnicode_Append()
11802 left = *p_left; in PyUnicode_Append()
11820 *p_left = right; in PyUnicode_Append()
11846 if (unicode_resize(p_left, new_len) != 0) in PyUnicode_Append()
11850 _PyUnicode_FastCopyCharacters(*p_left, left_len, right, 0, right_len); in PyUnicode_Append()
11864 *p_left = res; in PyUnicode_Append()
11866 assert(_PyUnicode_CheckConsistency(*p_left, 1)); in PyUnicode_Append()
11870 Py_CLEAR(*p_left); in PyUnicode_Append()