Lines Matching defs:items
46 PyObject **items;
81 items = (PyObject **)PyMem_Realloc(self->ob_item, num_allocated_bytes);
85 items = NULL;
87 if (items == NULL) {
91 self->ob_item = items;
105 * the odd number of items, and there is no drawback of rounding the
109 PyObject **items = PyMem_New(PyObject*, size);
110 if (items == NULL) {
114 self->ob_item = items;
282 PyObject **items;
299 items = self->ob_item;
301 items[i+1] = items[i];
303 items[where] = v;
640 we temporarily copy the items that are deleted from the
690 /* recycle the items that we are about to remove */
704 if (d < 0) { /* Delete -d items */
715 else if (d > 0) { /* Insert d items */
752 PyObject **items;
776 items = self->ob_item;
779 PyObject *o = items[j];
781 items[p++] = o;
825 Remove all items from list.
922 /* populate the end of self with iterable's items */
2369 sure all items are tuples */
2727 /* Search for the first index where items are different */
2747 /* No more items to compare -- compare sizes */
2985 items for each item that is part of the slice,