Lines Matching refs:el
130 evch_dl_add(evch_dlist_t *hp, evch_dlelem_t *el) in evch_dl_add() argument
135 x->dl_next = el; in evch_dl_add()
136 y->dl_prev = el; in evch_dl_add()
137 el->dl_next = y; in evch_dl_add()
138 el->dl_prev = x; in evch_dl_add()
186 evch_dl_next(evch_dlist_t *hp, void *el) in evch_dl_next() argument
188 evch_dlelem_t *ep = (evch_dlelem_t *)el; in evch_dl_next()
223 evch_q_in(evch_squeue_t *q, evch_qelem_t *el) in evch_q_in() argument
225 q->sq_tail->q_next = el; in evch_q_in()
226 el->q_next = NULL; in evch_q_in()
227 q->sq_tail = el; in evch_q_in()
240 evch_qelem_t *el; in evch_q_out() local
242 if ((el = q->sq_head) != NULL) { in evch_q_out()
243 q->sq_head = el->q_next; in evch_q_out()
249 return (el); in evch_q_out()
257 evch_q_next(evch_squeue_t *q, evch_qelem_t *el) in evch_q_next() argument
259 if (el == NULL) in evch_q_next()
261 return (el->q_next); in evch_q_next()