Lines Matching refs:poolp
292 typedef struct pool_header *poolp; typedef
342 #define POOL_ADDR(P) ((poolp)((uptr)(P) & ~(uptr)POOL_SIZE_MASK))
454 #define PTA(x) ((poolp )((uchar *)&(usedpools[2*(x)]) - 2*sizeof(block *)))
457 static poolp usedpools[2 * ((NB_SMALL_SIZE_CLASSES + 7) / 8) * 8] = {
770 int Py_ADDRESS_IN_RANGE(void *P, poolp pool) Py_NO_INLINE;
793 poolp pool; in PyObject_Malloc()
794 poolp next; in PyObject_Malloc()
952 pool = (poolp)usable_arenas->pool_address; in PyObject_Malloc()
996 poolp pool; in PyObject_Free()
998 poolp next, prev; in PyObject_Free()
1228 poolp pool; in PyObject_Realloc()
1397 pool_is_in_list(const poolp target, poolp list) in pool_is_in_list()
1399 poolp origlist = list; in pool_is_in_list()
1855 poolp p = (poolp)base; in _PyObject_DebugMallocStats()
1935 Py_ADDRESS_IN_RANGE(void *P, poolp pool) in Py_ADDRESS_IN_RANGE()