Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dunicodeobject.c5652 Py_ssize_t res_used; /* # used bytes */ in PyUnicode_Join() local
5710 res_used = 0; in PyUnicode_Join()
5735 new_res_used = res_used + itemlen; in PyUnicode_Join()
5754 res_p = PyUnicode_AS_UNICODE(res) + res_used; in PyUnicode_Join()
5765 res_used = new_res_used; in PyUnicode_Join()
5771 if (_PyUnicode_Resize(&res, res_used) < 0) in PyUnicode_Join()