Lines Matching refs:base
1007 uint arenaindex; /* index into arenas of base adr */
1287 uintptr_t base = (uintptr_t)_Py_ALIGN_UP(arenas[i].address, POOL_SIZE);
1290 assert(base <= (uintptr_t) arenas[i].pool_address);
1291 for (; base < (uintptr_t) arenas[i].pool_address; base += POOL_SIZE) {
1292 poolp p = (poolp)base;
1497 * (e.g. base address of arena is 200) then we only have to check one
1702 Tricky: Let B be the arena base address associated with the pool, B =
1722 correct base address of the pool's arena, and P must be within ARENA_SIZE of
2482 uint8_t *p; /* base address of malloc'ed pad block */
2587 uint8_t *head; /* base address of malloc'ed pad block */
3002 uintptr_t base = arenas[i].address;
3012 if (base & (uintptr_t)POOL_SIZE_MASK) {
3014 base &= ~(uintptr_t)POOL_SIZE_MASK;
3015 base += POOL_SIZE;
3019 assert(base <= (uintptr_t) arenas[i].pool_address);
3020 for (; base < (uintptr_t) arenas[i].pool_address; base += POOL_SIZE) {
3021 poolp p = (poolp)base;