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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c 309 uint nfreepools; member in struct:arena_object
325 * increasing order of `nfreepools` values.
510 allocated arenas first (ascending order based on the nfreepools member).
641 nfreepools <- number of whole pools that fit after alignment */
643 arenaobj->nfreepools = ARENA_SIZE / POOL_SIZE;
644 assert(POOL_SIZE * arenaobj->nfreepools == ARENA_SIZE);
647 --arenaobj->nfreepools;
650 arenaobj->ntotalpools = arenaobj->nfreepools;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c 279 uint nfreepools; member in struct:arena_object
295 * increasing order of `nfreepools` values.
477 allocated arenas first (ascending order based on the nfreepools member).
598 nfreepools <- number of whole pools that fit after alignment */
600 arenaobj->nfreepools = ARENA_SIZE / POOL_SIZE;
601 assert(POOL_SIZE * arenaobj->nfreepools == ARENA_SIZE);
604 --arenaobj->nfreepools;
607 arenaobj->ntotalpools = arenaobj->nfreepools;
    [all...]
  /external/python/cpython2/Objects/
obmalloc.c 309 uint nfreepools; member in struct:arena_object
325 * increasing order of `nfreepools` values.
510 allocated arenas first (ascending order based on the nfreepools member).
641 nfreepools <- number of whole pools that fit after alignment */
643 arenaobj->nfreepools = ARENA_SIZE / POOL_SIZE;
644 assert(POOL_SIZE * arenaobj->nfreepools == ARENA_SIZE);
647 --arenaobj->nfreepools;
650 arenaobj->ntotalpools = arenaobj->nfreepools;
    [all...]

Completed in 145 milliseconds