Home
last modified time | relevance | path

Searched refs:oldelem (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
D_heapqmodule.c298 PyObject *heap=NULL, *elem, *iterable, *sol, *it, *oldelem; in nlargest() local
352 oldelem = PyList_GET_ITEM(heap, 0); in nlargest()
354 Py_DECREF(oldelem); in nlargest()
467 PyObject *heap=NULL, *elem, *iterable, *los, *it, *oldelem; in nsmallest() local
523 oldelem = PyList_GET_ITEM(heap, 0); in nsmallest()
525 Py_DECREF(oldelem); in nsmallest()
Ditertoolsmodule.c1922 PyObject *oldelem; in product_next() local
1976 oldelem = PyTuple_GET_ITEM(result, i); in product_next()
1978 Py_DECREF(oldelem); in product_next()
1983 oldelem = PyTuple_GET_ITEM(result, i); in product_next()
1985 Py_DECREF(oldelem); in product_next()
2153 PyObject *oldelem; in combinations_next() local
2221 oldelem = PyTuple_GET_ITEM(result, i); in combinations_next()
2223 Py_DECREF(oldelem); in combinations_next()
2402 PyObject *oldelem; in cwr_next() local
2466 oldelem = PyTuple_GET_ITEM(result, i); in cwr_next()
[all …]