Searched refs:qe (Results 1 - 6 of 6) sorted by relevance

/darwin-on-arm/xnu/osfmk/kern/
H A Dcall_entry.h62 #define qe(x) ((queue_entry_t)(x)) macro
73 (void)remque(qe(entry));
75 enqueue_tail(queue, qe(entry));
89 (void)remque(qe(entry));
109 (void)remque(qe(entry));
112 current = CE(queue_next(qe(entry)));
113 (void)remque(qe(entry));
117 if (queue_end(queue, qe(current)) ||
119 current = CE(queue_prev(qe(current)));
123 current = CE(queue_next(qe(curren
[all...]
H A Dthread_call.c113 #define qe(x) ((queue_entry_t)(x)) macro
334 enqueue_tail(&thread_call_internal_queue, qe(call));
393 enqueue_head(&thread_call_internal_queue, qe(call));
523 while (!queue_end(&group->pending_queue, qe(call))) {
526 thread_call_t next = TC(queue_next(qe(call)));
539 call = TC(queue_next(qe(call)));
568 while (!queue_end(&group->delayed_queue, qe(call))) {
571 thread_call_t next = TC(queue_next(qe(call)));
584 call = TC(queue_next(qe(call)));
615 while (unique_call && !queue_end(&group->pending_queue, qe(cal
[all...]
H A Dtimer_call.c265 (void)remque(qe(entry));
310 (void)remque(qe(entry));
446 (void) remque(qe(call));
492 (void) remque(qe(call));
620 call = TIMER_CALL(queue_next(qe(call)));
621 } while (!queue_end(&queue_from->head, qe(call)));
629 (void) remque(qe(call));
H A Dqueue.h309 * boolean_t queue_end(q, qe)
311 * queue_entry_t qe;
313 #define queue_end(q, qe) ((q) == (qe))
481 * void queue_remove(q, qe, type, field)
H A Dsched_prim.c3776 queue_entry_t qe;
3785 qe = queue_first(q);
3786 while (!queue_end(q, qe)) {
3787 if (qe == (queue_entry_t)thread)
3790 qe = queue_next(qe);
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_resident.c1368 queue_entry_t qe; local
1382 qe = queue_next(&mem->listq);
1384 if (! queue_end(&object->memq, qe)) {
1387 next_page = (vm_page_t) qe;
1396 qe = queue_prev(&mem->listq);
1398 if (! queue_end(&object->memq, qe)) {
1401 prev_page = (vm_page_t) qe;

Completed in 95 milliseconds