Searched refs:dequeue (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-11-stable/usr.bin/grep/
H A Dqueue.c56 static struct qentry *dequeue(void);
78 item = dequeue();
87 dequeue(void) function
105 while ((item = dequeue()) != NULL) {
117 while ((item = dequeue()) != NULL) {
/freebsd-11-stable/usr.sbin/ctm/mkCTM/
H A Ddequeue4 L=/home/ctm/log.dequeue
/freebsd-11-stable/sys/netpfil/ipfw/
H A Ddn_sched.h84 * dequeue Called when scheduler instance 's' can
85 * dequeue a packet. Return NULL if none are available.
125 struct mbuf * (*dequeue)(struct dn_sch_inst *); member in struct:dn_alg
164 * thing done on a dequeue as the queue itself may go away.
173 /* Call AQM dequeue function */
174 if (q->fs->aqmfp && q->fs->aqmfp->dequeue )
175 return q->fs->aqmfp->dequeue(q);
H A Ddn_aqm.h74 * dequeue dequeue a packet from queue 'q'.
105 struct mbuf * (*dequeue)(struct dn_queue *); member in struct:dn_aqm
119 * negative len -> dequeue
H A Ddn_sched_fifo.c61 * Enqueue and dequeue use the default library functions.
116 _SI( .dequeue = ) fifo_dequeue,
H A Ddn_sched_rr.c204 /* no packet to dequeue*/
308 _SI( .dequeue = ) rr_dequeue,
H A Ddn_sched_prio.c107 * After the dequeue, if this queue become empty, it is index is removed
220 _SI( .dequeue = ) prio_dequeue,
H A Ddn_aqm_codel.c433 _SI( .dequeue = ) aqm_codel_dequeue,
H A Ddn_sched_wf2q.c364 _SI( .dequeue = ) wf2qp_dequeue,
H A Ddn_aqm_pie.c216 * as it stays at last value during dequeue process.
801 _SI( .dequeue = ) aqm_pie_dequeue,
H A Ddn_sched_fq_codel.c382 * Otherwise, the flow will be used for dequeue.
604 _SI( .dequeue = ) fq_codel_dequeue,
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DWorkList.cpp48 WorkListUnit dequeue() override {
68 WorkListUnit dequeue() override {
107 WorkListUnit dequeue() override {
173 WorkListUnit dequeue() override {
243 WorkListUnit dequeue() override {
301 WorkListUnit dequeue() override {
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_prio_q.c177 /* Define a function to dequeue the first element from the priority
180 void *dequeue( function
221 enqueue(q1, dequeue(q2));
H A Dntpsim.c166 curr_event = dequeue(event_queue);
239 rbuf = (struct recvbuf *)dequeue(recv_queue);
/freebsd-11-stable/contrib/ntp/include/
H A Dntp_prio_q.h51 void *dequeue(queue *my_queue);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocBase.h58 /// live range splitting. They must also override enqueue/dequeue to provide an
97 /// dequeue - Return the next unassigned register, or NULL.
98 virtual LiveInterval *dequeue() = 0;
H A DRegAllocBase.cpp89 while (LiveInterval *VirtReg = dequeue()) {
H A DRegAllocBasic.cpp95 LiveInterval *dequeue() override {
H A DRegAllocGreedy.cpp425 LiveInterval *dequeue() override;
447 LiveInterval *dequeue(PQueue &CurQueue);
747 LiveInterval *RAGreedy::dequeue() { return dequeue(Queue); } function in class:__anon1792::RAGreedy
749 LiveInterval *RAGreedy::dequeue(PQueue &CurQueue) { function in class:__anon1792::RAGreedy
2743 LiveInterval *LI = dequeue(RecoloringQueue);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DWorkList.h77 virtual WorkListUnit dequeue() = 0;
/freebsd-11-stable/sys/netpfil/ipfw/test/
H A Dmain.c7 * iteration, decides whether we can enqueue and/or dequeue.
28 uint32_t dequeue; member in struct:cfg_s
77 int state; /* 0 = going up (enqueue), 1: going down (dequeue) */
223 * XXX do not insist; rather, try dequeue
233 c->dequeue++;
536 c->deq = p->dequeue;
635 (unsigned long)c._enqueue, (unsigned long)c.dequeue, c.wfi,
/freebsd-11-stable/cddl/usr.sbin/dwatch/libexec/
H A DMakefile43 LINKS+= ${LIBEXECDIR}/dwatch/sched ${LIBEXECDIR}/dwatch/sched-dequeue
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp45 const CFGBlock *dequeue();
64 const CFGBlock *DataflowWorklist::dequeue() { function in class:DataflowWorklist
587 while (const CFGBlock *block = worklist.dequeue()) {
H A DUninitializedValues.cpp239 const CFGBlock *dequeue();
255 const CFGBlock *DataflowWorklist::dequeue() { function in class:DataflowWorklist
258 // First dequeue from the worklist. This can represent
263 // Next dequeue from the initial reverse post order. This is the
934 while (const CFGBlock *block = worklist.dequeue()) {
/freebsd-11-stable/sys/net/altq/
H A Daltq_subr.c142 altq_attach(ifq, type, discipline, enqueue, dequeue, request, clfier, classify)
147 struct mbuf *(*dequeue)(struct ifaltq *, int);
177 ifq->altq_dequeue = dequeue;
248 ifq->ifq_drv_maxlen = 0; /* disable bulk dequeue */
332 /* if token is still negative, don't allow dequeue */

Completed in 159 milliseconds

12