Home
last modified time | relevance | path

Searched defs:hb_priority_queue_t (Results 1 – 1 of 1) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-priority-queue.hh39 struct hb_priority_queue_t struct
42 typedef hb_pair_t<int64_t, unsigned> item_t;
43 hb_vector_t<item_t> heap;
47 void reset () { heap.resize (0); } in reset()
49 bool in_error () const { return heap.in_error (); } in in_error()
51 void insert (int64_t priority, unsigned value) in insert()
58 item_t pop_minimum () in pop_minimum()
83 hb_priority_queue_t& operator << (item_t item) in operator <<() argument
88 static constexpr unsigned parent (unsigned index) in parent()
93 static constexpr unsigned left_child (unsigned index) in left_child()
[all …]