Lines Matching refs:POOL_SIZE
227 #define POOL_SIZE SYSTEM_PAGE_SIZE /* must be 2^N */ macro
345 #define NUMBLOCKS(I) ((uint)(POOL_SIZE - POOL_OVERHEAD) / INDEX2SIZE(I))
643 arenaobj->nfreepools = ARENA_SIZE / POOL_SIZE; in new_arena()
644 assert(POOL_SIZE * arenaobj->nfreepools == ARENA_SIZE); in new_arena()
648 arenaobj->pool_address += POOL_SIZE - excess; in new_arena()
913 ARENA_SIZE - POOL_SIZE); in PyObject_Malloc()
942 pool->maxnextoffset = POOL_SIZE - size; in PyObject_Malloc()
954 ARENA_SIZE - POOL_SIZE); in PyObject_Malloc()
958 usable_arenas->pool_address += POOL_SIZE; in PyObject_Malloc()
1845 arena_alignment += POOL_SIZE; in _PyObject_DebugMallocStats()
1847 base += POOL_SIZE; in _PyObject_DebugMallocStats()
1854 ++j, base += POOL_SIZE) { in _PyObject_DebugMallocStats()
1898 quantization += p * ((POOL_SIZE - POOL_OVERHEAD) % size); in _PyObject_DebugMallocStats()
1919 "%u unused pools * %d bytes", numfreepools, POOL_SIZE); in _PyObject_DebugMallocStats()
1920 total += printone(buf, (size_t)numfreepools * POOL_SIZE); in _PyObject_DebugMallocStats()