Searched refs:rle (Results 51 - 63 of 63) sorted by relevance

123

/freebsd-11-stable/sys/dev/gpio/
H A Dgpiobus.c640 struct resource_list_entry *rle; local
645 rle = resource_list_add(&devi->rl, type, rid, start,
647 if (rle == NULL)
715 struct resource_list_entry *rle; local
721 rle = NULL;
726 rle = resource_list_find(rl, type, *rid);
727 if (rle == NULL)
729 if (rle->res != NULL)
731 start = rle->start;
732 count = rle
[all...]
/freebsd-11-stable/sys/dev/bhnd/bhndb/
H A Dbhndb.c1036 struct resource_list_entry *rle; local
1045 rle = NULL;
1050 rle = resource_list_find(BUS_GET_RESOURCE_LIST(dev, child),
1052 if (rle == NULL) {
1061 if (rle->res != NULL) {
1069 start = rle->start;
1070 end = rle->end;
1071 count = ulmax(count, rle->count);
1107 if (rle != NULL) {
1108 rle
[all...]
/freebsd-11-stable/sys/dev/pci/
H A Dpci.c1749 struct resource_list_entry *rle; local
1757 rle = resource_list_find(&dinfo->resources, SYS_RES_IRQ, 0);
1758 if (rle != NULL && rle->res != NULL)
1774 rle = resource_list_find(&dinfo->resources, SYS_RES_MEMORY,
1776 if (rle == NULL || rle->res == NULL ||
1777 !(rman_get_flags(rle->res) & RF_ACTIVE))
1779 cfg->msix.msix_table_res = rle->res;
1781 rle
1924 struct resource_list_entry *rle; local
2045 struct resource_list_entry *rle; local
2347 struct resource_list_entry *rle; local
2514 struct resource_list_entry *rle; local
2634 struct resource_list_entry *rle; local
4687 struct resource_list_entry *rle; local
5367 struct resource_list_entry *rle; local
5571 struct resource_list_entry *rle; local
5615 struct resource_list_entry *rle; local
[all...]
H A Dpci_host_generic.c862 struct resource_list_entry *rle; local
874 rle = resource_list_find(&di->di_rl, type, *rid);
875 if (rle == NULL)
878 start = rle->start;
879 end = rle->end;
880 count = rle->count;
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_pci.c138 struct resource_list_entry *rle; local
178 rle = linux_pci_get_rle(pdev, SYS_RES_IRQ, 0);
179 if (rle != NULL)
180 pdev->dev.irq = rle->start;
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi.c988 struct resource_list_entry *rle; local
990 STAILQ_FOREACH(rle, rl, link) {
991 if (rle->type != type)
993 if (rle->start <= value && rle->end >= value)
1170 struct resource_list_entry *rle; local
1189 STAILQ_FOREACH(rle, rl, link) {
1190 if (rle->res != NULL) {
1191 device_printf(dev, "duplicate resource for %jx\n", rle->start);
1196 switch (rle
1230 struct resource_list_entry *rle; local
1372 struct resource_list_entry *rle; local
[all...]
H A Dacpi_pcib_acpi.c291 struct resource_list_entry *rle; local
293 rle = resource_list_find(&sc->ap_host_res.hr_rl, PCI_RES_BUS, 0);
294 if (rle == NULL)
296 *startp = rle->start;
/freebsd-11-stable/contrib/groff/contrib/pdfmark/
H A DMakefile.sub74 $(pnmtops_nosetpage) -noturn -rle >$@ ; \
/freebsd-11-stable/sys/powerpc/mpc85xx/
H A Dlbc.c687 struct resource_list_entry *rle; local
713 rle = resource_list_find(&di->di_res, type, *rid);
714 if (rle == NULL) {
719 start = rle->start;
720 count = rle->count;
/freebsd-11-stable/sys/arm/arm/
H A Dgic.c775 struct resource_list_entry *rle; local
793 rle = resource_list_find(&di->rl, type, *rid);
794 if (rle == NULL) {
800 start = rle->start;
801 end = rle->end;
802 count = rle->count;
/freebsd-11-stable/contrib/groff/doc/
H A DMakefile.sub150 $(pnmtops_nosetpage) -noturn -rle >$@
/freebsd-11-stable/sys/dev/smartpqi/
H A Dsmartpqi_defines.h594 #define NON_DISK_PHYS_DEV(rle) \
595 (((reportlun_ext_entry_t *)(rle))->device_flags & 0x1)
/freebsd-11-stable/sys/compat/ndis/
H A Dsubr_ntoskrnl.c2671 struct resource_list_entry *rle; local
2682 STAILQ_FOREACH(rle, rl, link) {
2683 r = rle->res;
2690 if (rle->type == SYS_RES_MEMORY &&

Completed in 310 milliseconds

123