Home
last modified time | relevance | path

Searched refs:heapify (Results 1 – 9 of 9) sorted by relevance

/third_party/mindspore/mindspore/lite/micro/coder/wrapper/base/
Ddetection_post_process_base_wrapper.c33 static void heapify(const float *scores, int *indexes, int n, int i) { in heapify() function
57 heapify(scores, indexes, num_to_sort, i); in PartialArgSort()
63 heapify(scores, indexes, num_to_sort, 0); in PartialArgSort()
69 heapify(scores, indexes, cur_length, 0); in PartialArgSort()
/third_party/python/Lib/test/
Dtest_heapq.py88 self.module.heapify(heap)
91 self.assertRaises(TypeError, self.module.heapify, None)
119 self.module.heapify(heap)
132 self.module.heapify(heap)
171 self.module.heapify(heap)
250 self.module.heapify(data)
381 for f in (self.module.heapify, self.module.heappop):
388 for f in (self.module.heapify, self.module.heappop):
397 for f in (self.module.heapify, self.module.heappop):
405 for f in (self.module.heapify, self.module.heappop,
/third_party/python/Lib/
Dheapq.py168 def heapify(x): function
341 _heapify = heapify
549 heapify(result)
566 heapify(result)
Dsched.py96 heapq.heapify(self._queue)
/third_party/python/Doc/tutorial/
Dstdlib2.rst344 >>> from heapq import heapify, heappop, heappush
346 >>> heapify(data) # rearrange the list into heap order
/third_party/python/Doc/library/
Dheapq.rst38 populated list into a heap via function :func:`heapify`.
62 .. function:: heapify(x)
Drandom.rst515 from heapq import heapify, heapreplace
527 heapify(servers)
/third_party/python/Misc/NEWS.d/
D3.5.0b1.rst487 optimize heapq.heapify() for better cache performance when heapifying large
/third_party/python/Lib/asyncio/
Dbase_events.py1827 heapq.heapify(new_scheduled)