Home | History | Annotate | Download | only in et

Lines Matching defs:el

273 	struct et_list *el;
275 if (!(el = (struct et_list *) malloc(sizeof(struct et_list))))
279 free(el);
283 el->table = et;
284 el->next = _et_dynamic_list;
285 _et_dynamic_list = el;
302 struct et_list *el;
308 el = _et_dynamic_list;
310 while (el) {
311 if (el->table->base == et->base) {
313 el2->next = el->next;
315 _et_dynamic_list = el->next;
316 (void) free(el);
325 el2 = el;
326 el = el->next;