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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_collectionsmodule.c 59 static Py_ssize_t numfreeblocks = 0; variable
72 if (numfreeblocks) {
73 numfreeblocks -= 1;
74 b = freeblocks[numfreeblocks];
90 if (numfreeblocks < MAXFREEBLOCKS) {
91 freeblocks[numfreeblocks] = b;
92 numfreeblocks++;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_collectionsmodule.c 55 static Py_ssize_t numfreeblocks = 0; variable
73 if (numfreeblocks) {
74 numfreeblocks -= 1;
75 b = freeblocks[numfreeblocks];
91 if (numfreeblocks < MAXFREEBLOCKS) {
92 freeblocks[numfreeblocks] = b;
93 numfreeblocks++;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c 1794 size_t numfreeblocks[SMALL_REQUEST_THRESHOLD >> ALIGNMENT_SHIFT]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c 1745 size_t numfreeblocks[SMALL_REQUEST_THRESHOLD >> ALIGNMENT_SHIFT]; local
    [all...]
  /external/python/cpython2/Objects/
obmalloc.c 1794 size_t numfreeblocks[SMALL_REQUEST_THRESHOLD >> ALIGNMENT_SHIFT]; local
    [all...]
  /external/python/cpython2/Modules/
_collectionsmodule.c 57 static Py_ssize_t numfreeblocks = 0; variable
70 if (numfreeblocks) {
71 numfreeblocks -= 1;
72 b = freeblocks[numfreeblocks];
88 if (numfreeblocks < MAXFREEBLOCKS) {
89 freeblocks[numfreeblocks] = b;
90 numfreeblocks++;
    [all...]
  /external/python/cpython3/Modules/
_collectionsmodule.c 117 static Py_ssize_t numfreeblocks = 0; variable
123 if (numfreeblocks) {
124 numfreeblocks--;
125 return freeblocks[numfreeblocks];
138 if (numfreeblocks < MAXFREEBLOCKS) {
139 freeblocks[numfreeblocks] = b;
140 numfreeblocks++;
    [all...]
  /external/python/cpython3/Objects/
obmalloc.c 2256 size_t numfreeblocks[SMALL_REQUEST_THRESHOLD >> ALIGNMENT_SHIFT]; local
    [all...]

Completed in 764 milliseconds