Lines Matching defs:el
117 raid_list_el_t el; /* double-links */
4253 raid_list_el_t *el = LIST_OBJ_TO_EL(list, obj);
4255 return (el->next);
4261 raid_list_el_t *el = LIST_OBJ_TO_EL(list, obj), *el1;
4263 el->prev = list->tail;
4266 el->next = NULL;
4271 if (el->prev != NULL) {
4272 el1 = LIST_OBJ_TO_EL(list, el->prev);
4280 raid_list_el_t *el = LIST_OBJ_TO_EL(list, obj), *el1;
4283 list->head = el->next;
4286 list->tail = el->prev;
4288 if (el->next != NULL) {
4289 el1 = LIST_OBJ_TO_EL(list, el->next);
4290 el1->prev = el->prev;
4293 if (el->prev != NULL) {
4294 el1 = LIST_OBJ_TO_EL(list, el->prev);
4295 el1->next = el->next;
4298 el->prev = el->next = NULL;
4339 raid_list_create(&tab->table[i], offsetof(raid_obj_t, el));