Home | History | Annotate | Download | only in et

Lines Matching refs:el

244 	struct et_list *el;
246 if (!(el = (struct et_list *) malloc(sizeof(struct et_list))))
250 free(el);
254 el->table = et;
255 el->next = _et_dynamic_list;
256 _et_dynamic_list = el;
273 struct et_list *el;
279 el = _et_dynamic_list;
281 while (el) {
282 if (el->table->base == et->base) {
284 el2->next = el->next;
286 _et_dynamic_list = el->next;
287 (void) free(el);
296 el2 = el;
297 el = el->next;