Lines Matching defs:el
119 raid_list_el_t el; /* double-links */
4251 raid_list_el_t *el = LIST_OBJ_TO_EL(list, obj);
4253 return (el->next);
4259 raid_list_el_t *el = LIST_OBJ_TO_EL(list, obj), *el1;
4261 el->prev = list->tail;
4264 el->next = NULL;
4269 if (el->prev != NULL) {
4270 el1 = LIST_OBJ_TO_EL(list, el->prev);
4278 raid_list_el_t *el = LIST_OBJ_TO_EL(list, obj), *el1;
4281 list->head = el->next;
4284 list->tail = el->prev;
4286 if (el->next != NULL) {
4287 el1 = LIST_OBJ_TO_EL(list, el->next);
4288 el1->prev = el->prev;
4291 if (el->prev != NULL) {
4292 el1 = LIST_OBJ_TO_EL(list, el->prev);
4293 el1->next = el->next;
4296 el->prev = el->next = NULL;
4337 raid_list_create(&tab->table[i], offsetof(raid_obj_t, el));