Home
last modified time | relevance | path

Searched refs:qtail (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/net/altq/
H A Daltq_classq.h105 qtail(q) = m; in _addq()
120 qtail(q) = NULL; in _getq()
141 qtail(q) = NULL; in _getq_tail()
143 qtail(q) = prev; in _getq_tail()
159 qtail(q) = NULL; in _getq_random()
169 if (m == qtail(q)) in _getq_random()
170 qtail(q) = prev; in _getq_random()
182 m0 = qtail(q); in _removeq()
189 qtail(q) = NULL; in _removeq()
190 else if (qtail(q) == m) in _removeq()
[all …]
H A Daltq_rmclass.c1723 qtail(q) = m; in _addq()
1738 qtail(q) = NULL; in _getq()
1760 qtail(q) = NULL; in _getq_tail()
1762 qtail(q) = prev; in _getq_tail()
1779 qtail(q) = NULL; in _getq_random()
1789 if (m == qtail(q)) in _getq_random()
1790 qtail(q) = prev; in _getq_random()
1802 m0 = qtail(q); in _removeq()
1809 qtail(q) = NULL; in _removeq()
1810 else if (qtail(q) == m) in _removeq()
[all …]
/freebsd/contrib/ntp/libntp/
H A Dwork_thread.c319 size_t qhead, qtail; in receive_blocking_req_internal() local
330 qtail = c->tail_workitem; in receive_blocking_req_internal()
331 if (qhead == qtail) in receive_blocking_req_internal()
333 c->tail_workitem = qtail + 1; in receive_blocking_req_internal()
334 qtail %= c->workitems_alloc; in receive_blocking_req_internal()
335 req = c->workitems[qtail]; in receive_blocking_req_internal()
336 c->workitems[qtail] = NULL; in receive_blocking_req_internal()
443 size_t qhead, qtail, slot; in receive_blocking_resp_internal() local
457 qtail = c->tail_response; in receive_blocking_resp_internal()
458 for (removed = NULL; !removed && (qhead != qtail); ++qtail) { in receive_blocking_resp_internal()
[all …]