Searched refs:nfreepools (Results 1 - 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dobmalloc.c309 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;
883 /* This arena already had the smallest nfreepools
884 * value, so decreasing nfreepools does
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dobmalloc.c279 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;
840 /* This arena already had the smallest nfreepools
841 * value, so decreasing nfreepools does
[all...]

Completed in 61 milliseconds