Home
last modified time | relevance | path

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

/xnu-8020.101.4/osfmk/kern/
H A Dqueue.h388 queue_entry_t n_elt, p_elt; in re_queue_head() local
395p_elt = elt->prev; /* next_elt may equal prev_elt (and the queue head) if elt was the only element… in re_queue_head()
396 n_elt->prev = p_elt; in re_queue_head()
397 p_elt->next = n_elt; in re_queue_head()
421 queue_entry_t n_elt, p_elt; in re_queue_tail() local
428p_elt = elt->prev; /* next_elt may equal prev_elt (and the queue head) if elt was the only element… in re_queue_tail()
429 n_elt->prev = p_elt; in re_queue_tail()
430 p_elt->next = n_elt; in re_queue_tail()
433 p_elt = que->prev; in re_queue_tail()
435 elt->prev = p_elt; in re_queue_tail()
[all …]
/xnu-8020.101.4/iokit/DriverKit/
H A Dqueue_implementation.h388 queue_entry_t n_elt, p_elt; in re_queue_head() local
395p_elt = elt->prev; /* next_elt may equal prev_elt (and the queue head) if elt was the only element… in re_queue_head()
396 n_elt->prev = p_elt; in re_queue_head()
397 p_elt->next = n_elt; in re_queue_head()
421 queue_entry_t n_elt, p_elt; in re_queue_tail() local
428p_elt = elt->prev; /* next_elt may equal prev_elt (and the queue head) if elt was the only element… in re_queue_tail()
429 n_elt->prev = p_elt; in re_queue_tail()
430 p_elt->next = n_elt; in re_queue_tail()
433 p_elt = que->prev; in re_queue_tail()
435 elt->prev = p_elt; in re_queue_tail()
[all …]