Lines Matching defs:rle
477 struct resource_list_entry *rle;
480 STAILQ_FOREACH(rle, rl, link) {
481 if (!rle->res) {
482 rid = rle->rid;
483 resource_list_alloc(rl, dev, child, rle->type, &rid,
683 struct resource_list_entry *rle;
687 rle = resource_list_find(rl, SYS_RES_IOPORT, 0);
688 if (rle)
689 *result = rle->start;
695 rle = resource_list_find(rl, SYS_RES_IOPORT, 1);
696 if (rle)
697 *result = rle->start;
703 rle = resource_list_find(rl, SYS_RES_IOPORT, 0);
704 if (rle)
705 *result = rle->count;
711 rle = resource_list_find(rl, SYS_RES_IOPORT, 1);
712 if (rle)
713 *result = rle->count;
719 rle = resource_list_find(rl, SYS_RES_MEMORY, 0);
720 if (rle)
721 *result = rle->start;
727 rle = resource_list_find(rl, SYS_RES_MEMORY, 1);
728 if (rle)
729 *result = rle->start;
735 rle = resource_list_find(rl, SYS_RES_MEMORY, 0);
736 if (rle)
737 *result = rle->count;
743 rle = resource_list_find(rl, SYS_RES_MEMORY, 1);
744 if (rle)
745 *result = rle->count;
751 rle = resource_list_find(rl, SYS_RES_IRQ, 0);
752 if (rle)
753 *result = rle->start;
759 rle = resource_list_find(rl, SYS_RES_IRQ, 1);
760 if (rle)
761 *result = rle->start;
767 rle = resource_list_find(rl, SYS_RES_DRQ, 0);
768 if (rle)
769 *result = rle->start;
775 rle = resource_list_find(rl, SYS_RES_DRQ, 1);
776 if (rle)
777 *result = rle->start;
904 struct resource_list_entry *rle;
915 STAILQ_FOREACH(rle, &idev->id_resources, link) {
916 if (rle->res)
918 rle->res);