Home
last modified time | relevance | path

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

/third_party/python/Include/
Dpymem.h77 #define PyMem_Resize(p, type, n) \ macro
88 #define PyMem_RESIZE(p, type, n) PyMem_Resize(p, type, n)
/third_party/python/Modules/
D_csv.c640 PyMem_Resize(field_new, Py_UCS4, field_size_new); in parse_grow_buff()
1168 PyMem_Resize(rec_new, Py_UCS4, rec_size_new); in join_check_rec_size()
D_elementtree.c2127 PyMem_Resize(parent_stack, ParentLocator, new_size); in parent_stack_push_new()
/third_party/python/Doc/c-api/
Dmemory.rst272 .. c:function:: TYPE* PyMem_Resize(void *p, TYPE, size_t n)
/third_party/python/Objects/
Dunicodeobject.c4442 if (PyMem_Resize(newbuf, wchar_t, newsize) == NULL) { in widechar_resize()