Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dlistobject.c37 size_t new_allocated, num_allocated_bytes; in list_resize() local
67 num_allocated_bytes = new_allocated * sizeof(PyObject *); in list_resize()
68 items = (PyObject **)PyMem_Realloc(self->ob_item, num_allocated_bytes); in list_resize()