Lines Matching defs:items
488 /* Retain only the initial clearto items. If clearto >= the current
489 * number of items, this is a (non-erroneous) NOP.
934 * Very large memo tables (over 50K items) use doubling instead.
1582 /* Free the unpickler's memo, taking care to decref any items left in it. */
2871 /* iter is an iterator giving items, and we batch up chunks of
2943 /* Pump out MARK, items, APPENDS. */
2952 /* Fetch and save up to BATCHSIZE items */
3141 PyErr_SetString(PyExc_TypeError, "dict items "
3169 PyErr_SetString(PyExc_TypeError, "dict items "
3193 /* Pump out MARK, items, SETITEMS. */
3204 /* Fetch and save up to BATCHSIZE items */
3207 PyErr_SetString(PyExc_TypeError, "dict items "
3322 PyObject *items, *iter;
3349 /* Save the dict items. */
3358 items = PyObject_CallMethodNoArgs(obj, &_Py_ID(items));
3359 if (items == NULL)
3361 iter = PyObject_GetIter(items);
3362 Py_DECREF(items);
3399 PyObject *items;
3403 items = PySequence_List(obj);
3404 if (items == NULL) {
3407 reduce_value = Py_BuildValue("(O(O))", (PyObject*)&PySet_Type, items);
3408 Py_DECREF(items);
3467 PyObject *items;
3471 items = PySequence_List(obj);
3472 if (items == NULL) {
3476 items);
3477 Py_DECREF(items);
4801 Remove all items from memo.
5773 PyErr_SetString(st->UnpicklingError, "odd number of items for DICT");
5794 PyObject *items;
5801 items = Pdata_poptuple(self->stack, i);
5802 if (items == NULL)
5805 frozenset = PyFrozenSet_New(items);
5806 Py_DECREF(items);
6550 "odd number of items for SETITEMS");
6604 PyObject *items;
6607 items = Pdata_poptuple(self->stack, mark);
6608 if (items == NULL)
6611 status = _PySet_Update(set, items);
6612 Py_DECREF(items);
7305 Remove all items from memo.