Searched refs:priority_queue (Results 1 - 25 of 118) sorted by relevance

12345

/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/
H A Dpriority_queue.hpp37 * @file priority_queue.hpp
84 class priority_queue class in namespace:__gnu_pbds
112 priority_queue() { } function in class:__gnu_pbds::priority_queue
116 priority_queue(const cmp_fn& r_cmp_fn) : base_type(r_cmp_fn) { } function in class:__gnu_pbds::priority_queue
122 priority_queue(It first_it, It last_it) function in class:__gnu_pbds::priority_queue
130 priority_queue(It first_it, It last_it, const cmp_fn& r_cmp_fn) function in class:__gnu_pbds::priority_queue
134 priority_queue(const priority_queue& other) function in class:__gnu_pbds::priority_queue
138 ~priority_queue() { }
140 priority_queue
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/
H A Dpriority_queue.hpp37 * @file priority_queue.hpp
84 class priority_queue class in namespace:__gnu_pbds
112 priority_queue() { } function in class:__gnu_pbds::priority_queue
116 priority_queue(const cmp_fn& r_cmp_fn) : base_type(r_cmp_fn) { } function in class:__gnu_pbds::priority_queue
122 priority_queue(It first_it, It last_it) function in class:__gnu_pbds::priority_queue
130 priority_queue(It first_it, It last_it, const cmp_fn& r_cmp_fn) function in class:__gnu_pbds::priority_queue
134 priority_queue(const priority_queue& other) function in class:__gnu_pbds::priority_queue
138 ~priority_queue() { }
140 priority_queue
[all...]
/netbsd-current/external/gpl3/gcc/dist/libgomp/
H A Dpriority_queue.h29 enough to go out-of-line and be moved to priority_queue.c. ?? */
85 struct priority_queue struct
121 struct priority_queue *,
124 struct priority_queue *);
126 struct priority_queue *, bool);
128 struct priority_queue *,
131 struct priority_queue *,
134 struct priority_queue *,
136 struct priority_queue *,
144 priority_queue_multi_p (struct priority_queue *hea
[all...]
H A Dpriority_queue.c58 struct priority_queue *head,
73 struct priority_queue *head,
147 order. The priority_queue holds tasks of type TYPE.
156 struct priority_queue *head, bool check_deps)
219 struct priority_queue *head,
233 struct priority_queue *head,
306 struct priority_queue *q1,
308 struct priority_queue *q2,
H A Dlibgomp.h56 /* Needed for memset in priority_queue.c. */
202 #include "priority_queue.h"
569 struct priority_queue children_queue;
623 struct priority_queue taskgroup_queue;
725 struct priority_queue task_queue;
H A DMakefile.am68 priority_queue.c affinity-fmt.c teams.c allocator.c oacc-profiling.c \
H A Dtask.c148 gomp_clear_parent (struct priority_queue *q)
606 struct priority_queue *head,
1001 (This function could be defined in priority_queue.c, but we want it
1002 inlined, and putting it in priority_queue.h is not an option, given
1009 struct priority_queue *head = &parent->children_queue;
1090 (This function could be defined in priority_queue.c, but we want it
1091 inlined, and putting it in priority_queue.h is not an option, given
1096 struct priority_queue *head,
/netbsd-current/external/gpl3/gcc.old/dist/libgomp/
H A Dpriority_queue.h29 enough to go out-of-line and be moved to priority_queue.c. ?? */
85 struct priority_queue struct
119 struct priority_queue *,
122 struct priority_queue *);
124 struct priority_queue *, bool);
126 struct priority_queue *,
129 struct priority_queue *,
131 struct priority_queue *,
139 priority_queue_multi_p (struct priority_queue *head)
147 priority_queue_init (struct priority_queue *hea
[all...]
H A Dpriority_queue.c58 struct priority_queue *head,
73 struct priority_queue *head,
147 order. The priority_queue holds tasks of type TYPE.
156 struct priority_queue *head, bool check_deps)
176 struct priority_queue *head,
249 struct priority_queue *q1,
251 struct priority_queue *q2,
H A Dlibgomp.h56 /* Needed for memset in priority_queue.c. */
199 #include "priority_queue.h"
513 struct priority_queue children_queue;
557 struct priority_queue taskgroup_queue;
659 struct priority_queue task_queue;
H A DMakefile.am67 oacc-mem.c oacc-async.c oacc-plugin.c oacc-cuda.c priority_queue.c \
H A Dtask.c145 gomp_clear_parent (struct priority_queue *q)
568 struct priority_queue *head,
941 (This function could be defined in priority_queue.c, but we want it
942 inlined, and putting it in priority_queue.h is not an option, given
949 struct priority_queue *head = &parent->children_queue;
1030 (This function could be defined in priority_queue.c, but we want it
1031 inlined, and putting it in priority_queue.h is not an option, given
1036 struct priority_queue *head,
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DPriorityQueue.h21 /// PriorityQueue - This class behaves like std::priority_queue and
27 class PriorityQueue : public std::priority_queue<T, Sequence, Compare> {
31 : std::priority_queue<T, Sequence, Compare>(compare, sequence)
38 : std::priority_queue<T, Sequence, Compare>(begin, end, compare, sequence)
58 // priority_queue's plain pop to remove it.
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstl_queue.h445 * %priority_queue.
448 * and removed from, the %priority_queue using the
449 * %priority_queue's member functions. If you access the elements
451 * order would be different, the %priority_queue will not re-sort
456 class priority_queue class
492 // DR 2684. priority_queue lacking comparator typedef
506 priority_queue(const _Compare& __x = _Compare(), function in class:priority_queue
514 priority_queue() function in class:priority_queue
518 priority_queue(const _Compare& __x, const _Sequence& __s) function in class:priority_queue
523 priority_queue(cons function in class:priority_queue
529 priority_queue(const _Alloc& __a) function in class:priority_queue
533 priority_queue(const _Compare& __x, const _Alloc& __a) function in class:priority_queue
539 priority_queue(const _Compare& __x, const _Sequence& __c, function in class:priority_queue
545 priority_queue(const _Compare& __x, _Sequence&& __c, const _Alloc& __a) function in class:priority_queue
550 priority_queue(const priority_queue& __q, const _Alloc& __a) function in class:priority_queue
554 priority_queue(priority_queue&& __q, const _Alloc& __a) function in class:priority_queue
575 priority_queue(_InputIterator __first, _InputIterator __last, function in class:priority_queue
586 priority_queue(_InputIterator __first, _InputIterator __last, function in class:priority_queue
597 priority_queue(_InputIterator __first, _InputIterator __last, function in class:priority_queue
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstl_queue.h487 * %priority_queue.
490 * and removed from, the %priority_queue using the
491 * %priority_queue's member functions. If you access the elements
493 * order would be different, the %priority_queue will not re-sort
498 class priority_queue class
534 // DR 2684. priority_queue lacking comparator typedef
548 priority_queue(const _Compare& __x = _Compare(), function in class:priority_queue
556 priority_queue() function in class:priority_queue
560 priority_queue(const _Compare& __x, const _Sequence& __s) function in class:priority_queue
565 priority_queue(cons function in class:priority_queue
571 priority_queue(const _Alloc& __a) function in class:priority_queue
575 priority_queue(const _Compare& __x, const _Alloc& __a) function in class:priority_queue
581 priority_queue(const _Compare& __x, const _Sequence& __c, function in class:priority_queue
587 priority_queue(const _Compare& __x, _Sequence&& __c, const _Alloc& __a) function in class:priority_queue
592 priority_queue(const priority_queue& __q, const _Alloc& __a) function in class:priority_queue
596 priority_queue(priority_queue&& __q, const _Alloc& __a) function in class:priority_queue
617 priority_queue(_InputIterator __first, _InputIterator __last, function in class:priority_queue
631 priority_queue(_InputIterator __first, _InputIterator __last, function in class:priority_queue
640 priority_queue(_InputIterator __first, _InputIterator __last, function in class:priority_queue
651 priority_queue(_InputIterator __first, _InputIterator __last, function in class:priority_queue
665 priority_queue(_InputIterator __first, _InputIterator __last, function in class:priority_queue
673 priority_queue(_InputIterator __first, _InputIterator __last, function in class:priority_queue
681 priority_queue(_InputIterator __first, _InputIterator __last, function in class:priority_queue
693 priority_queue(_InputIterator __first, _InputIterator __last, function in class:priority_queue
[all...]
/netbsd-current/external/gpl3/gcc.old/lib/libgomp/
H A Ddefs.mk5 G_libgomp_la_SOURCES=alloc.c atomic.c barrier.c critical.c env.c error.c icv.c icv-device.c iter.c iter_ull.c loop.c loop_ull.c ordered.c parallel.c sections.c single.c task.c team.c work.c lock.c mutex.c proc.c sem.c bar.c ptrlock.c time.c fortran.c affinity.c target.c splay-tree.c libgomp-plugin.c oacc-parallel.c oacc-host.c oacc-init.c oacc-mem.c oacc-async.c oacc-plugin.c oacc-cuda.c priority_queue.c affinity-fmt.c teams.c oacc-profiling.c oacc-target.c
/netbsd-current/external/gpl3/gcc/lib/libgomp/
H A Ddefs.mk5 G_libgomp_la_SOURCES=alloc.c atomic.c barrier.c critical.c env.c error.c icv.c icv-device.c iter.c iter_ull.c loop.c loop_ull.c ordered.c parallel.c scope.c sections.c single.c task.c team.c work.c lock.c mutex.c proc.c sem.c bar.c ptrlock.c time.c fortran.c affinity.c target.c splay-tree.c libgomp-plugin.c oacc-parallel.c oacc-host.c oacc-init.c oacc-mem.c oacc-async.c oacc-plugin.c oacc-cuda.c priority_queue.c affinity-fmt.c teams.c allocator.c oacc-profiling.c oacc-target.c
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/precompiled/
H A Dextc++.h73 #include <ext/pb_ds/priority_queue.hpp>
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/precompiled/
H A Dextc++.h73 #include <ext/pb_ds/priority_queue.hpp>
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DGenericIteratedDominanceFrontier.h140 std::priority_queue<DomTreeNodePair, SmallVector<DomTreeNodePair, 32>,
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
H A Dmultiseq_selection.h274 std::priority_queue<std::pair<_ValueType, _SeqNumber>,
300 std::priority_queue<std::pair<_ValueType, _SeqNumber>,
518 std::priority_queue<std::pair<_Tp, _SeqNumber>,
544 std::priority_queue<std::pair<_Tp, _SeqNumber>,
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
H A Dmultiseq_selection.h274 std::priority_queue<std::pair<_ValueType, _SeqNumber>,
300 std::priority_queue<std::pair<_ValueType, _SeqNumber>,
518 std::priority_queue<std::pair<_Tp, _SeqNumber>,
544 std::priority_queue<std::pair<_Tp, _SeqNumber>,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRegAllocBasic.cpp68 std::priority_queue<LiveInterval*, std::vector<LiveInterval*>,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSplitModule.cpp160 std::priority_queue<std::pair<unsigned, unsigned>,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DBitTracker.h103 std::priority_queue<MachineInstr*, std::vector<MachineInstr*>, Cmp> Uses;

Completed in 465 milliseconds

12345