Searched refs:list_resize (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Objects/ |
D | listobject.c | 45 list_resize(PyListObject *self, Py_ssize_t newsize) in list_resize() function 276 if (list_resize(self, n+1) < 0) in ins1() 311 if (list_resize(self, n+1) < 0) in app1() 691 if (list_resize(a, Py_SIZE(a) + d) < 0) { in list_ass_slice() 700 if (list_resize(a, k+d) < 0) in list_ass_slice() 755 if (list_resize(self, size*n) < 0) in list_inplace_repeat() 890 if (list_resize(self, m + n) < 0) { in list_extend() 932 if (list_resize(self, mn) < 0) in list_extend() 965 if (list_resize(self, Py_SIZE(self)) < 0) in list_extend() 1027 status = list_resize(self, Py_SIZE(self) - 1); in list_pop_impl() [all …]
|