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

12

/freebsd-13-stable/sys/netpfil/ipfw/
H A Ddn_sched.h88 * dequeue Called when scheduler instance 's' can
89 * dequeue a packet. Return NULL if none are available.
129 struct mbuf * (*dequeue)(struct dn_sch_inst *); member in struct:dn_alg
168 * thing done on a dequeue as the queue itself may go away.
177 /* Call AQM dequeue function */
178 if (q->fs->aqmfp && q->fs->aqmfp->dequeue )
179 return q->fs->aqmfp->dequeue(q);
H A Ddn_aqm.h72 * dequeue dequeue a packet from queue 'q'.
103 struct mbuf * (*dequeue)(struct dn_queue *); member in struct:dn_aqm
117 * negative len -> dequeue
H A Ddn_sched_fifo.c63 * Enqueue and dequeue use the default library functions.
118 _SI( .dequeue = ) fifo_dequeue,
H A Ddn_sched_prio.c109 * After the dequeue, if this queue become empty, it is index is removed
221 _SI( .dequeue = ) prio_dequeue,
H A Ddn_sched_rr.c205 /* no packet to dequeue*/
309 _SI( .dequeue = ) rr_dequeue,
H A Ddn_aqm_codel.c433 _SI( .dequeue = ) aqm_codel_dequeue,
H A Ddn_sched_wf2q.c366 _SI( .dequeue = ) wf2qp_dequeue,
/freebsd-13-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 {
H A DCoreEngine.cpp139 const WorkListUnit& WU = WList->dequeue();
/freebsd-13-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-13-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.cpp419 LiveInterval *dequeue() override;
441 LiveInterval *dequeue(PQueue &CurQueue);
740 LiveInterval *RAGreedy::dequeue() { return dequeue(Queue); } function in class:__anon3553::RAGreedy
742 LiveInterval *RAGreedy::dequeue(PQueue &CurQueue) { function in class:__anon3553::RAGreedy
2725 LiveInterval *LI = dequeue(RecoloringQueue);
/freebsd-13-stable/contrib/ntp/include/
H A Dntp_prio_q.h51 void *dequeue(queue *my_queue);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowWorklist.h42 const CFGBlock *dequeue() { function in class:clang::DataflowWorklistBase
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DWorkList.h77 virtual WorkListUnit dequeue() = 0;
/freebsd-13-stable/sys/dev/vmware/vmci/
H A Dvmci_qpair.c556 * dequeue --
562 * VMCI_ERROR_QUEUEPAIR_NODATA if no data was available to dequeue.
577 dequeue(struct vmci_queue *produce_q, function
688 result = dequeue(qpair->produce_q, qpair->consume_q,
724 result = dequeue(qpair->produce_q, qpair->consume_q,
794 result = dequeue(qpair->produce_q, qpair->consume_q,
830 result = dequeue(qpair->produce_q, qpair->consume_q,
/freebsd-13-stable/tools/sched/
H A Dschedgraph.d109 sched:::dequeue
/freebsd-13-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) */
221 * XXX do not insist; rather, try dequeue
231 c->dequeue++;
534 c->deq = p->dequeue;
632 (unsigned long)c._enqueue, (unsigned long)c.dequeue, c.wfi,
/freebsd-13-stable/sys/vm/
H A Dvm_pageout.c271 vm_pageout_collect_batch(struct scan_state *ss, const bool dequeue) argument
294 } else if (dequeue)
298 if (dequeue) {
308 if (dequeue)
317 vm_pageout_next(struct scan_state *ss, const bool dequeue) argument
321 vm_pageout_collect_batch(ss, dequeue);
1613 * for pending dequeue and enqueue requests, we can
/freebsd-13-stable/cddl/usr.sbin/dwatch/libexec/
H A DMakefile45 LINKS+= ${LIBEXECDIR}/dwatch/sched ${LIBEXECDIR}/dwatch/sched-dequeue
/freebsd-13-stable/sys/net/altq/
H A Daltq_subr.c139 altq_attach(ifq, type, discipline, enqueue, dequeue, request, clfier, classify)
144 struct mbuf *(*dequeue)(struct ifaltq *, int);
158 ifq->altq_dequeue = dequeue;
219 ifq->ifq_drv_maxlen = 0; /* disable bulk dequeue */
303 /* if token is still negative, don't allow dequeue */
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp539 while (const CFGBlock *block = worklist.dequeue()) {

Completed in 296 milliseconds

12