HomeSort by relevance Sort by last modified time
    Searched refs:ARENA_SIZE (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c 217 #define ARENA_SIZE (256 << 10) /* 256KB */
220 #define MAX_ARENAS (SMALL_MEMORY_LIMIT / ARENA_SIZE)
536 * 16 = can allocate 16 arenas = 16 * ARENA_SIZE = 4MB before growing the
616 address = mmap(NULL, ARENA_SIZE, PROT_READ|PROT_WRITE,
620 address = malloc(ARENA_SIZE);
643 arenaobj->nfreepools = ARENA_SIZE / POOL_SIZE;
644 assert(POOL_SIZE * arenaobj->nfreepools == ARENA_SIZE);
668 B <= P < B + ARENA_SIZE
672 0 <= P-B < ARENA_SIZE
685 correct base address of the pool's arena, and P must be within ARENA_SIZE of
    [all...]
  /external/python/cpython2/Objects/
obmalloc.c 217 #define ARENA_SIZE (256 << 10) /* 256KB */
220 #define MAX_ARENAS (SMALL_MEMORY_LIMIT / ARENA_SIZE)
536 * 16 = can allocate 16 arenas = 16 * ARENA_SIZE = 4MB before growing the
616 address = mmap(NULL, ARENA_SIZE, PROT_READ|PROT_WRITE,
620 address = malloc(ARENA_SIZE);
643 arenaobj->nfreepools = ARENA_SIZE / POOL_SIZE;
644 assert(POOL_SIZE * arenaobj->nfreepools == ARENA_SIZE);
668 B <= P < B + ARENA_SIZE
672 0 <= P-B < ARENA_SIZE
685 correct base address of the pool's arena, and P must be within ARENA_SIZE o
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c 187 #define ARENA_SIZE (256 << 10) /* 256KB */
190 #define MAX_ARENAS (SMALL_MEMORY_LIMIT / ARENA_SIZE)
503 * 16 = can allocate 16 arenas = 16 * ARENA_SIZE = 4MB before growing the
580 arenaobj->address = (uptr)malloc(ARENA_SIZE);
600 arenaobj->nfreepools = ARENA_SIZE / POOL_SIZE;
601 assert(POOL_SIZE * arenaobj->nfreepools == ARENA_SIZE);
625 B <= P < B + ARENA_SIZE
629 0 <= P-B < ARENA_SIZE
642 correct base address of the pool's arena, and P must be within ARENA_SIZE of
655 AO.address+ARENA_SIZE. By case assumption, P is not controlled by obmalloc,
    [all...]
  /external/python/cpython3/Objects/
obmalloc.c 695 #define ARENA_SIZE (256 << 10) /* 256KB */
698 #define MAX_ARENAS (SMALL_MEMORY_LIMIT / ARENA_SIZE)
    [all...]

Completed in 308 milliseconds