Home
last modified time | relevance | path

Searched refs:returnitem (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_heapqmodule.c149 PyObject *lastelt, *returnitem; in heappop() local
171 returnitem = PyList_GET_ITEM(heap, 0); in heappop()
174 Py_DECREF(returnitem); in heappop()
177 return returnitem; in heappop()
186 PyObject *heap, *item, *returnitem; in heapreplace() local
201 returnitem = PyList_GET_ITEM(heap, 0); in heapreplace()
205 Py_DECREF(returnitem); in heapreplace()
208 return returnitem; in heapreplace()
224 PyObject *heap, *item, *returnitem; in heappushpop() local
248 returnitem = PyList_GET_ITEM(heap, 0); in heappushpop()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_heapqmodule.c148 PyObject *lastelt, *returnitem; in heappop() local
170 returnitem = PyList_GET_ITEM(heap, 0); in heappop()
173 Py_DECREF(returnitem); in heappop()
176 return returnitem; in heappop()
185 PyObject *heap, *item, *returnitem; in heapreplace() local
200 returnitem = PyList_GET_ITEM(heap, 0); in heapreplace()
204 Py_DECREF(returnitem); in heapreplace()
207 return returnitem; in heapreplace()
223 PyObject *heap, *item, *returnitem; in heappushpop() local
247 returnitem = PyList_GET_ITEM(heap, 0); in heappushpop()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dheapq.py150 returnitem = heap[0]
154 returnitem = lastelt
155 return returnitem
168 returnitem = heap[0] # raises appropriate IndexError if heap is empty
171 return returnitem
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dheapq.py149 returnitem = heap[0]
153 returnitem = lastelt
154 return returnitem
167 returnitem = heap[0] # raises appropriate IndexError if heap is empty
170 return returnitem