Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dunicodeobject.c5651 Py_ssize_t res_alloc = 100; /* # allocated bytes for string in res */ in PyUnicode_Join() local
5706 res = _PyUnicode_New(res_alloc); in PyUnicode_Join()
5743 if (new_res_used > res_alloc) { in PyUnicode_Join()
5746 res_alloc += res_alloc; in PyUnicode_Join()
5747 if (res_alloc <= 0) in PyUnicode_Join()
5749 } while (new_res_used > res_alloc); in PyUnicode_Join()
5750 if (_PyUnicode_Resize(&res, res_alloc) < 0) { in PyUnicode_Join()