Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dobmalloc.c454 #define PTA(x) ((poolp )((uchar *)&(usedpools[2*(x)]) - 2*sizeof(block *)))
457 static poolp usedpools[2 * ((NB_SMALL_SIZE_CLASSES + 7) / 8) * 8] = {
822 pool = usedpools[size + size]; in PyObject_Malloc()
917 next = usedpools[size + size]; /* == prev */ in PyObject_Malloc()
1199 next = usedpools[size + size]; in PyObject_Free()
1870 assert(pool_is_in_list(p, usedpools[sz + sz])); in _PyObject_DebugMallocStats()
/external/python/cpython3/Objects/
Dobmalloc.c1099 #define PTA(x) ((poolp )((uint8_t *)&(usedpools[2*(x)]) - 2*sizeof(block *)))
1102 static poolp usedpools[2 * ((NB_SMALL_SIZE_CLASSES + 7) / 8) * 8] = { variable
1451 pool = usedpools[size + size]; in pymalloc_alloc()
1553 next = usedpools[size + size]; /* == prev */ in pymalloc_alloc()
1701 next = usedpools[size + size]; in pymalloc_free()
2660 assert(pool_is_in_list(p, usedpools[sz + sz])); in _PyObject_DebugMallocStats()