Home
last modified time | relevance | path

Searched refs:siftup (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Modules/
D_heapqmodule.c64 siftup(PyListObject *heap, Py_ssize_t pos) in siftup() function
190 return heappop_internal(heap, siftup); in _heapq_heappop()
241 return heapreplace_internal(heap, item, siftup); in _heapq_heapreplace_impl()
293 if (siftup((PyListObject *)heap, 0)) { in _heapq_heappushpop_impl()
409 return heapify_internal(heap, siftup); in _heapq_heapify()
/external/python/cpython2/Misc/NEWS.d/
D2.7.10rc1.rst102 Fix use-after-free bug in heapq's siftup and siftdown functions. (See also:
/external/python/cpython3/Misc/
DHISTORY554 - Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq's siftup