Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_heapqmodule.c53 siftup(PyListObject *heap, Py_ssize_t pos) in siftup() function
163 return heappop_internal(heap, siftup); in heappop()
200 return heapreplace_internal(args, siftup); in heapreplace()
248 if (siftup((PyListObject *)heap, 0)) { in heappushpop()
359 return heapify_internal(heap, siftup); in 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