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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
methodobject.c 11 static int numfree = 0; variable
24 numfree--;
136 if (numfree < PyCFunction_MAXFREELIST) {
139 numfree++;
397 int freelist_size = numfree;
403 numfree--;
405 assert(numfree == 0);
frameobject.c 445 static int numfree = 0; /* number of frames currently in free_list */ variable
446 /* max value for numfree */
480 else if (numfree < PyFrame_MAXFREELIST) {
481 ++numfree;
690 assert(numfree > 0);
691 --numfree;
    [all...]
tupleobject.c 19 static int numfree[PyTuple_MAXSAVESIZE]; variable
68 numfree[size]--;
99 ++numfree[0];
225 numfree[len] < PyTuple_MAXFREELIST &&
229 numfree[len]++;
899 freelist_size += numfree[i];
901 numfree[i] = 0;
listobject.c 98 static int numfree = 0; variable
105 while (numfree) {
106 op = free_list[--numfree];
134 if (numfree) {
135 numfree--;
136 op = free_list[numfree];
313 if (numfree < PyList_MAXFREELIST && PyList_CheckExact(op))
314 free_list[numfree++] = op;
    [all...]
setobject.c 58 static int numfree = 0; variable
568 if (numfree < PySet_MAXFREELIST && PyAnySet_CheckExact(so))
569 free_list[numfree++] = so;
1011 if (numfree &&
1013 so = free_list[--numfree];
1081 while (numfree) {
1082 numfree--;
1083 so = free_list[numfree];
    [all...]
classobject.c 11 static int numfree = 0; variable
    [all...]
dictobject.c 226 static int numfree = 0; variable
233 while (numfree) {
234 op = free_list[--numfree];
258 if (numfree) {
259 mp = free_list[--numfree];
    [all...]
unicodeobject.c 98 static int numfree = 0; variable
336 numfree--;
391 numfree < PyUnicode_MAXFREELIST) {
404 numfree++;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
methodobject.c 11 static int numfree = 0; variable
24 numfree--;
136 if (numfree < PyCFunction_MAXFREELIST) {
139 numfree++;
397 int freelist_size = numfree;
403 numfree--;
405 assert(numfree == 0);
frameobject.c 443 static int numfree = 0; /* number of frames currently in free_list */ variable
444 /* max value for numfree */
478 else if (numfree < PyFrame_MAXFREELIST) {
479 ++numfree;
688 assert(numfree > 0);
689 --numfree;
    [all...]
tupleobject.c 19 static int numfree[PyTuple_MAXSAVESIZE]; variable
68 numfree[size]--;
99 ++numfree[0];
223 numfree[len] < PyTuple_MAXFREELIST &&
227 numfree[len]++;
910 freelist_size += numfree[i];
912 numfree[i] = 0;
listobject.c 98 static int numfree = 0; variable
105 while (numfree) {
106 op = free_list[--numfree];
134 if (numfree) {
135 numfree--;
136 op = free_list[numfree];
313 if (numfree < PyList_MAXFREELIST && PyList_CheckExact(op))
314 free_list[numfree++] = op;
    [all...]
setobject.c 58 static int numfree = 0; variable
569 if (numfree < PySet_MAXFREELIST && PyAnySet_CheckExact(so))
570 free_list[numfree++] = so;
1012 if (numfree &&
1014 so = free_list[--numfree];
1082 while (numfree) {
1083 numfree--;
1084 so = free_list[numfree];
    [all...]
classobject.c 11 static int numfree = 0; variable
    [all...]
dictobject.c 226 static int numfree = 0; variable
233 while (numfree) {
234 op = free_list[--numfree];
258 if (numfree) {
259 mp = free_list[--numfree];
    [all...]
unicodeobject.c 97 static int numfree; variable
323 numfree--;
378 numfree < PyUnicode_MAXFREELIST) {
391 numfree++;
    [all...]
  /external/python/cpython2/Objects/
methodobject.c 11 static int numfree = 0; variable
24 numfree--;
136 if (numfree < PyCFunction_MAXFREELIST) {
139 numfree++;
397 int freelist_size = numfree;
403 numfree--;
405 assert(numfree == 0);
frameobject.c 443 static int numfree = 0; /* number of frames currently in free_list */ variable
444 /* max value for numfree */
478 else if (numfree < PyFrame_MAXFREELIST) {
479 ++numfree;
688 assert(numfree > 0);
689 --numfree;
963 int freelist_size = numfree;
969 --numfree;
971 assert(numfree == 0);
tupleobject.c 19 static int numfree[PyTuple_MAXSAVESIZE]; variable
68 numfree[size]--;
99 ++numfree[0];
225 numfree[len] < PyTuple_MAXFREELIST &&
229 numfree[len]++;
899 freelist_size += numfree[i];
901 numfree[i] = 0;
listobject.c 98 static int numfree = 0; variable
105 while (numfree) {
106 op = free_list[--numfree];
134 if (numfree) {
135 numfree--;
136 op = free_list[numfree];
313 if (numfree < PyList_MAXFREELIST && PyList_CheckExact(op))
314 free_list[numfree++] = op;
    [all...]
setobject.c 55 static int numfree = 0; variable
565 if (numfree < PySet_MAXFREELIST && PyAnySet_CheckExact(so))
566 free_list[numfree++] = so;
1008 if (numfree &&
1010 so = free_list[--numfree];
1078 while (numfree) {
1079 numfree--;
1080 so = free_list[numfree];
    [all...]
classobject.c 11 static int numfree = 0; variable
    [all...]
dictobject.c 226 static int numfree = 0; variable
233 while (numfree) {
234 op = free_list[--numfree];
258 if (numfree) {
259 mp = free_list[--numfree];
    [all...]
unicodeobject.c 98 static int numfree = 0; variable
336 numfree--;
391 numfree < PyUnicode_MAXFREELIST) {
404 numfree++;
    [all...]

Completed in 296 milliseconds