Lines Matching refs:el
134 evch_dl_add(evch_dlist_t *hp, evch_dlelem_t *el) in evch_dl_add() argument
139 x->dl_next = el; in evch_dl_add()
140 y->dl_prev = el; in evch_dl_add()
141 el->dl_next = y; in evch_dl_add()
142 el->dl_prev = x; in evch_dl_add()
190 evch_dl_next(evch_dlist_t *hp, void *el) in evch_dl_next() argument
192 evch_dlelem_t *ep = (evch_dlelem_t *)el; in evch_dl_next()
227 evch_q_in(evch_squeue_t *q, evch_qelem_t *el) in evch_q_in() argument
229 q->sq_tail->q_next = el; in evch_q_in()
230 el->q_next = NULL; in evch_q_in()
231 q->sq_tail = el; in evch_q_in()
244 evch_qelem_t *el; in evch_q_out() local
246 if ((el = q->sq_head) != NULL) { in evch_q_out()
247 q->sq_head = el->q_next; in evch_q_out()
253 return (el); in evch_q_out()
261 evch_q_next(evch_squeue_t *q, evch_qelem_t *el) in evch_q_next() argument
263 if (el == NULL) in evch_q_next()
265 return (el->q_next); in evch_q_next()