Searched refs:pymemallocator_eq (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Objects/ |
D | obmalloc.c | 315 pymemallocator_eq(PyMemAllocatorEx *a, PyMemAllocatorEx *b) in pymemallocator_eq() function 329 if (pymemallocator_eq(&_PyMem_Raw, &malloc_alloc) && in _PyMem_GetAllocatorsName() 330 pymemallocator_eq(&_PyMem, &malloc_alloc) && in _PyMem_GetAllocatorsName() 331 pymemallocator_eq(&_PyObject, &malloc_alloc)) in _PyMem_GetAllocatorsName() 336 if (pymemallocator_eq(&_PyMem_Raw, &malloc_alloc) && in _PyMem_GetAllocatorsName() 337 pymemallocator_eq(&_PyMem, &pymalloc) && in _PyMem_GetAllocatorsName() 338 pymemallocator_eq(&_PyObject, &pymalloc)) in _PyMem_GetAllocatorsName() 348 if (pymemallocator_eq(&_PyMem_Raw, &dbg_raw) && in _PyMem_GetAllocatorsName() 349 pymemallocator_eq(&_PyMem, &dbg_mem) && in _PyMem_GetAllocatorsName() 350 pymemallocator_eq(&_PyObject, &dbg_obj)) in _PyMem_GetAllocatorsName() [all …]
|