Lines Matching defs:recycle
639 we must allocate an additional array, 'recycle', into which
643 PyObject **recycle = recycle_on_stack; /* will allocate more if needed */
690 /* recycle the items that we are about to remove */
695 recycle = (PyObject **)PyMem_Malloc(s);
696 if (recycle == NULL) {
701 memcpy(recycle, &item[ilow], s);
710 memcpy(&item[ilow], recycle, s);
729 Py_XDECREF(recycle[k]);
732 if (recycle != recycle_on_stack)
733 PyMem_Free(recycle);