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

12

/freebsd-11.0-release/usr.bin/grep/
H A Dqueue.c54 static struct qentry *dequeue(void);
72 item = dequeue();
79 dequeue(void) function
97 while ((item = dequeue()) != NULL) {
109 while ((item = dequeue()) != NULL) {
/freebsd-11.0-release/usr.sbin/ctm/mkCTM/
H A Ddequeue2 # $FreeBSD: releng/11.0/usr.sbin/ctm/mkCTM/dequeue 50479 1999-08-28 01:35:59Z peter $
4 L=/home/ctm/log.dequeue
/freebsd-11.0-release/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.c58 * Enqueue and dequeue use the default library functions.
113 _SI( .dequeue = ) fifo_dequeue,
H A Ddn_sched_prio.c104 * After the dequeue, if this queue become empty, it is index is removed
217 _SI( .dequeue = ) prio_dequeue,
H A Ddn_sched_rr.c201 /* no packet to dequeue*/
305 _SI( .dequeue = ) rr_dequeue,
H A Ddn_aqm_codel.c433 _SI( .dequeue = ) aqm_codel_dequeue,
H A Ddn_sched_wf2q.c361 _SI( .dequeue = ) wf2qp_dequeue,
H A Ddn_aqm_pie.c779 _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.0-release/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.c165 curr_event = dequeue(event_queue);
238 rbuf = (struct recvbuf *)dequeue(recv_queue);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DWorkList.h78 virtual WorkListUnit dequeue() = 0;
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DRegAllocBase.h56 /// live range splitting. They must also override enqueue/dequeue to provide an
86 /// dequeue - Return the next unassigned register, or NULL.
87 virtual LiveInterval *dequeue() = 0;
H A DRegAllocBase.cpp88 while (LiveInterval *VirtReg = dequeue()) {
H A DRegAllocBasic.cpp94 LiveInterval *dequeue() override {
H A DRegAllocGreedy.cpp328 LiveInterval *dequeue() override;
345 LiveInterval *dequeue(PQueue &CurQueue);
600 LiveInterval *RAGreedy::dequeue() { return dequeue(Queue); } function in class:__anon2514::RAGreedy
602 LiveInterval *RAGreedy::dequeue(PQueue &CurQueue) { function in class:__anon2514::RAGreedy
2190 LiveInterval *LI = dequeue(RecoloringQueue);
/freebsd-11.0-release/contrib/ntp/include/
H A Dntp_prio_q.h51 void *dequeue(queue *my_queue);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp55 WorkListUnit dequeue() override {
83 WorkListUnit dequeue() override {
124 WorkListUnit dequeue() override {
215 const WorkListUnit& WU = WList->dequeue();
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DLiveVariables.cpp42 const CFGBlock *dequeue();
73 const CFGBlock *DataflowWorklist::dequeue() { function in class:DataflowWorklist
533 while (const CFGBlock *block = worklist.dequeue()) {
H A DUninitializedValues.cpp224 const CFGBlock *dequeue();
239 const CFGBlock *DataflowWorklist::dequeue() { function in class:DataflowWorklist
242 // First dequeue from the worklist. This can represent
247 // Next dequeue from the initial reverse post order. This is the
900 while (const CFGBlock *block = worklist.dequeue()) {
/freebsd-11.0-release/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.0-release/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 */
/freebsd-11.0-release/contrib/ofed/management/opensm/opensm/
H A Dosm_ucast_lash.c277 inline static void dequeue(cl_list_t * bfsq, switch_t ** sw) function
306 dequeue(&bfsq, &sw);

Completed in 287 milliseconds

12