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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c 570 uint numarenas; local
574 * Note that it's possible for `numarenas` to overflow.
576 numarenas = maxarenas ? maxarenas << 1 : INITIAL_ARENA_OBJECTS;
577 if (numarenas <= maxarenas)
580 if (numarenas > PY_SIZE_MAX / sizeof(*arenas))
583 nbytes = numarenas * sizeof(*arenas);
599 for (i = maxarenas; i < numarenas; ++i) {
601 arenas[i].nextarena = i < numarenas - 1 ?
607 maxarenas = numarenas;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c 535 uint numarenas; local
539 * Note that it's possible for `numarenas` to overflow.
541 numarenas = maxarenas ? maxarenas << 1 : INITIAL_ARENA_OBJECTS;
542 if (numarenas <= maxarenas)
545 if (numarenas > PY_SIZE_MAX / sizeof(*arenas))
548 nbytes = numarenas * sizeof(*arenas);
564 for (i = maxarenas; i < numarenas; ++i) {
566 arenas[i].nextarena = i < numarenas - 1 ?
572 maxarenas = numarenas;
    [all...]
  /external/python/cpython2/Objects/
obmalloc.c 570 uint numarenas; local
574 * Note that it's possible for `numarenas` to overflow.
576 numarenas = maxarenas ? maxarenas << 1 : INITIAL_ARENA_OBJECTS;
577 if (numarenas <= maxarenas)
580 if (numarenas > PY_SIZE_MAX / sizeof(*arenas))
583 nbytes = numarenas * sizeof(*arenas);
599 for (i = maxarenas; i < numarenas; ++i) {
601 arenas[i].nextarena = i < numarenas - 1 ?
607 maxarenas = numarenas;
    [all...]
  /external/python/cpython3/Objects/
obmalloc.c 1195 uint numarenas; local
    [all...]

Completed in 764 milliseconds