Searched refs:numfree (Results 1 - 16 of 16) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dmethodobject.c11 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);
H A Dframeobject.c445 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;
966 int freelist_size = numfree;
972 --numfree;
974 assert(numfree == 0);
H A Dtupleobject.c19 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;
H A Dlistobject.c98 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;
H A Dsetobject.c58 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];
H A Dclassobject.c11 static int numfree = 0; variable
2260 numfree--;
2390 if (numfree < PyMethod_MAXFREELIST) {
2393 numfree++;
2680 int freelist_size = numfree;
2686 numfree--;
2688 assert(numfree == 0);
H A Ddictobject.c226 static int numfree = 0; variable
233 while (numfree) {
234 op = free_list[--numfree];
258 if (numfree) {
259 mp = free_list[--numfree];
1015 if (numfree < PyDict_MAXFREELIST && Py_TYPE(mp) == &PyDict_Type)
1016 free_list[numfree++] = mp;
H A Dunicodeobject.c98 static int numfree = 0; variable
336 numfree--;
391 numfree < PyUnicode_MAXFREELIST) {
404 numfree++;
7736 return PyInt_FromLong(numfree);
8962 int freelist_size = numfree;
8972 numfree--;
8975 assert(numfree == 0);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dmethodobject.c11 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);
H A Dframeobject.c443 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;
964 int freelist_size = numfree;
970 --numfree;
972 assert(numfree == 0);
H A Dtupleobject.c19 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;
H A Dlistobject.c98 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;
H A Dsetobject.c58 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];
H A Dclassobject.c11 static int numfree = 0; variable
2236 numfree--;
2366 if (numfree < PyMethod_MAXFREELIST) {
2369 numfree++;
2656 int freelist_size = numfree;
2662 numfree--;
2664 assert(numfree == 0);
H A Ddictobject.c226 static int numfree = 0; variable
233 while (numfree) {
234 op = free_list[--numfree];
258 if (numfree) {
259 mp = free_list[--numfree];
990 if (numfree < PyDict_MAXFREELIST && Py_TYPE(mp) == &PyDict_Type)
991 free_list[numfree++] = mp;
H A Dunicodeobject.c97 static int numfree; variable
323 numfree--;
378 numfree < PyUnicode_MAXFREELIST) {
391 numfree++;
7628 return PyInt_FromLong(numfree);
8828 numfree = 0;
8852 int freelist_size = numfree;
8862 numfree--;
8865 assert(numfree == 0);

Completed in 269 milliseconds