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

12

/freebsd-9.3-release/contrib/ntp/tests/ntpd/
H A Dntp_prio_q.c52 TEST_ASSERT_NULL(dequeue(q));
74 element* e_ptr_returned = dequeue(q);
81 TEST_ASSERT_NULL(dequeue(q));
105 dequeue(q);
110 dequeue(q);
111 dequeue(q);
115 TEST_ASSERT_EQUAL_PTR(dequeue(q), e1_ptr);
116 TEST_ASSERT_EQUAL_PTR(dequeue(q), e3_ptr);
117 TEST_ASSERT_EQUAL_PTR(dequeue(q), e2_ptr);
119 TEST_ASSERT_NULL(dequeue(
[all...]
/freebsd-9.3-release/usr.bin/grep/
H A Dqueue.c54 static struct qentry *dequeue(void);
72 free(dequeue());
76 dequeue(void) function
94 while ((item = dequeue()) != NULL) {
105 while ((item = dequeue()) != NULL)
/freebsd-9.3-release/usr.sbin/ctm/mkCTM/
H A Ddequeue4 L=/home/ctm/log.dequeue
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DRegAllocBase.h57 /// 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.cpp87 while (LiveInterval *VirtReg = dequeue()) {
H A DRegAllocBasic.cpp96 virtual LiveInterval *dequeue() { function in class:__anon2166::RABasic
/freebsd-9.3-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-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DWorkList.h78 virtual WorkListUnit dequeue() = 0;
/freebsd-9.3-release/contrib/ntp/include/
H A Dntp_prio_q.h51 void *dequeue(queue *my_queue);
/freebsd-9.3-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
160 * thing done on a dequeue as the queue itself may go away.
H A Ddn_sched_fifo.c55 * Enqueue and dequeue use the default library functions.
109 _SI( .dequeue = ) fifo_dequeue,
H A Ddn_sched_prio.c101 * After the dequeue, if this queue become empty, it is index is removed
214 _SI( .dequeue = ) prio_dequeue,
H A Ddn_sched_rr.c198 /* no packet to dequeue*/
294 _SI( .dequeue = ) rr_dequeue,
H A Ddn_sched_wf2q.c358 _SI( .dequeue = ) wf2qp_dequeue,
H A Dip_dn_io.c509 while (si->credit >= 0 && (m = s->fp->dequeue(si)) != NULL) {
/freebsd-9.3-release/sys/netpfil/ipfw/test/
H A Ddn_test.h146 void *enqueue, *dequeue; member in struct:dn_alg
H A Dmain.c7 * iteration, decides whether we can enqueue and/or dequeue.
30 uint32_t dequeue; member in struct:cfg_s
118 /* dequeue returns NON-NULL when a packet is dropped */
133 /* dequeue returns NON-NULL when a packet is available */
135 dequeue(struct cfg_s *c) function
170 c->dequeue++;
171 if ((m = dequeue(c))) {
443 c->deq = p->dequeue;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp54 virtual WorkListUnit dequeue() { function in class:__anon3499::DFS
82 virtual WorkListUnit dequeue() { function in class:__anon3499::BFS
123 virtual WorkListUnit dequeue() { function in class:__anon3500::BFSBlockDFSContents
214 const WorkListUnit& WU = WList->dequeue();
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowSolver.h45 /// dequeue - Remove a block from the worklist.
46 const CFGBlock *dequeue() { function in class:clang::DataflowWorkListTy
201 const CFGBlock *B = WorkList.dequeue();
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DLiveVariables.cpp43 const CFGBlock *dequeue();
87 const CFGBlock *DataflowWorklist::dequeue() { function in class:DataflowWorklist
553 while (const CFGBlock *block = worklist.dequeue()) {
H A DUninitializedValues.cpp223 const CFGBlock *dequeue();
238 const CFGBlock *DataflowWorklist::dequeue() { function in class:DataflowWorklist
241 // First dequeue from the worklist. This can represent
246 // Next dequeue from the initial reverse post order. This is the
839 while (const CFGBlock *block = worklist.dequeue()) {
/freebsd-9.3-release/sys/contrib/altq/altq/
H A Daltq_subr.c152 altq_attach(ifq, type, discipline, enqueue, dequeue, request, clfier, classify)
157 struct mbuf *(*dequeue)(struct ifaltq *, int);
187 ifq->altq_dequeue = dequeue;
262 ifq->ifq_drv_maxlen = 0; /* disable bulk dequeue */
350 /* if token is still negative, don't allow dequeue */
/freebsd-9.3-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);
/freebsd-9.3-release/sys/kern/
H A Dsched_4bsd.c260 SDT_PROBE_DEFINE3(sched, , , dequeue, "struct thread *",
1421 SDT_PROBE3(sched, , , dequeue, td, td->td_proc, NULL);

Completed in 216 milliseconds

12