Home
last modified time | relevance | path

Searched refs:qe_element (Results 1 – 2 of 2) sorted by relevance

/xnu-10063.141.1/osfmk/kern/
H A Dqueue.h433 #define qe_element(qe, type, field) __container_of(qe, type, field) macro
488 for (elt = qe_element((head)->next, typeof(*(elt)), field); \
490 elt = qe_element((elt)->field.next, typeof(*(elt)), field))
511 for (typeof(*(elt)) *_nelt = qe_element(((head)->next)->next, typeof(*(elt)), field), \
513 (elt = qe_element((head)->next, typeof(*(elt)), field)); \
515 elt = _nelt, _nelt = qe_element((elt)->field.next, typeof(*(elt)), field)) \
524 _tmp_element = qe_element(_tmp_entry, type, field); \
533 _tmp_element = qe_element(_tmp_entry, type, field); \
542 _tmp_element = qe_element(_tmp_entry, type, field); \
551 _tmp_element = qe_element(_tmp_entry, type, field); \
[all …]
H A Dsched_prim.c195 thread_t iter_thread = qe_element(iter, struct thread, runq_links); in check_rt_runq_consistency()
4279 thread_t iter_thread = qe_element(iter, struct thread, runq_links); in rt_runq_enqueue()